結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | t_ito1982 |
提出日時 | 2015-02-11 21:54:01 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 0 ms / 5,000 ms |
コード長 | 148 bytes |
コンパイル時間 | 242 ms |
コンパイル使用メモリ | 20,992 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 01:26:46 |
合計ジャッジ時間 | 673 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 0 ms
5,376 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:8:17: warning: format ‘%d’ expects argument of type ‘int *’, but argument 2 has type ‘int (*)[10]’ [-Wformat=] 8 | scanf("%d",&i); | ~^ ~~ | | | | | int (*)[10] | int * main.c:8:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d",&i); | ^~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <string.h> #include <stdlib.h> int main(void) { int i[10]; scanf("%d",&i); printf("Hello World!\n"); return 0; }