結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | aseth64 |
提出日時 | 2024-08-28 21:14:22 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 427 bytes |
コンパイル時間 | 4,274 ms |
コンパイル使用メモリ | 117,760 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-28 21:14:28 |
合計ジャッジ時間 | 5,136 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include <iostream> using namespace std; int main() { int n; cin >> n; for (int i = 1; i < n; i++) { if (i % 15 == 0) { std::cout << "FizzBuzz" << std::endl; } else if (i % 3 == 0) { std::cout << "Fizz" << std::endl; } else if (i % 5 == 0) { std::cout << "Buzz" << std::endl; } else { std::cout << i << std::endl; } } }