結果
問題 | No.46 はじめのn歩 |
ユーザー | KunihikoWada |
提出日時 | 2016-09-01 22:37:31 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 398 bytes |
コンパイル時間 | 904 ms |
コンパイル使用メモリ | 20,096 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-04-27 14:29:52 |
合計ジャッジ時間 | 7,649 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | OLE | - |
testcase_05 | OLE | - |
testcase_06 | OLE | - |
testcase_07 | OLE | - |
testcase_08 | WA | - |
testcase_09 | OLE | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:6:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%d", &n); | ^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { int n, i; scanf("%d", &n); for(i = 1; i <= n; i++) { if((i % 15) == 0) { printf("FizzBuzz\n"); } else if((i % 5) == 0) { printf("Buzz\n"); } else if((i % 3) == 0) { printf("Fizz\n"); } else { printf("%d\n", i); } } return 0; }