Submission #793639
Source Code Expand
#include <iostream>
#include <cstdio>
#include <string>
using namespace std;
int main(void) {
int i;
char s[101];
scanf("%s", s);
scanf("%d", &i);
printf("%c\n", s[i-1]);
return 0;
}
Submission Info
| Submission Time | |
|---|---|
| Task | A - 添字 |
| User | small |
| Language | C++14 (GCC 5.4.1) |
| Score | 100 |
| Code Size | 207 Byte |
| Status | AC |
| Exec Time | 6 ms |
| Memory | 256 KiB |
Compile Error
./Main.cpp: In function ‘int main()’:
./Main.cpp:11:16: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
scanf("%s", s);
^
./Main.cpp:12:17: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &i);
^
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 100 / 100 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt |
| All | 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 0_00.txt | AC | 4 ms | 256 KiB |
| 0_01.txt | AC | 4 ms | 256 KiB |
| 0_02.txt | AC | 4 ms | 256 KiB |
| 0_03.txt | AC | 4 ms | 256 KiB |
| 1_00.txt | AC | 6 ms | 256 KiB |
| 1_01.txt | AC | 4 ms | 256 KiB |
| 1_02.txt | AC | 4 ms | 256 KiB |
| 1_03.txt | AC | 4 ms | 256 KiB |