結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | HAHAHA |
提出日時 | 2017-08-28 12:58:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 276 bytes |
コンパイル時間 | 1,605 ms |
コンパイル使用メモリ | 166,860 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 08:25:40 |
合計ジャッジ時間 | 2,211 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:9:22: warning: 'n' is used uninitialized [-Wuninitialized] 9 | for(int i=1;i<=n;i++){ | ~^~~ main.cpp:8:13: note: 'n' was declared here 8 | int n; | ^
ソースコード
#include<bits/stdc++.h> using namespace std; int a,b,c,d,e; int main(){ int n; for(int i=1;i<=n;i++){ if(i%3==0&&i%5==0) cout << "FizzBuzz" << endl; else if(i%3==0) cout << "Fizz" << endl; else if(i%5==0) cout << "Buzz" << endl; cout << i << endl; } return 0; }