結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | tk11414 |
提出日時 | 2015-04-17 22:22:26 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 246 bytes |
コンパイル時間 | 465 ms |
コンパイル使用メモリ | 20,096 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-04 15:46:03 |
合計ジャッジ時間 | 955 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:8:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d", &n); | ^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <string.h> int main() { int i, n; char str[10], *token1 ; int result ; scanf("%d", &n); for (i=0; i<n; i++) { token1 = strtok(str, ","); printf("Hello World!\n"); return 0; } }