結果
問題 | No.9005 実行時間/使用メモリテスト(テスト用) |
ユーザー | 👑 testestest |
提出日時 | 2015-08-09 21:36:06 |
言語 | C90 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 119 bytes |
コンパイル時間 | 68 ms |
コンパイル使用メモリ | 20,096 KB |
実行使用メモリ | 40,320 KB |
最終ジャッジ日時 | 2024-07-18 06:18:36 |
合計ジャッジ時間 | 3,192 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:1: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration] 5 | printf("%d",a[atoi(gets(k))]); | ^~~~~~ main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’ +++ |+#include <stdio.h> 1 | int main(){ main.c:5:1: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch] 5 | printf("%d",a[atoi(gets(k))]); | ^~~~~~ main.c:5:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’ main.c:5:15: warning: implicit declaration of function ‘atoi’ [-Wimplicit-function-declaration] 5 | printf("%d",a[atoi(gets(k))]); | ^~~~ main.c:5:20: warning: implicit declaration of function ‘gets’ [-Wimplicit-function-declaration] 5 | printf("%d",a[atoi(gets(k))]); | ^~~~ /usr/bin/ld: /tmp/ccRoFWVU.o: in function `main': main.c:(.text.startup+0x6a): 警告: the `gets' function is dangerous and should not be used.
ソースコード
int main(){ int a[10000000]={},i; char k[10]; for(i=0;i<10000000;i++)a[i]=i; printf("%d",a[atoi(gets(k))]); return 0; }