結果
| 問題 |
No.9002 FizzBuzz(テスト用)
|
| ユーザー |
kolvlmam3
|
| 提出日時 | 2023-08-30 23:29:48 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 76 ms / 5,000 ms |
| コード長 | 439 bytes |
| コンパイル時間 | 1,916 ms |
| コンパイル使用メモリ | 193,628 KB |
| 最終ジャッジ日時 | 2025-02-16 15:41:31 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
#include <bits/stdc++.h>
#define endl '\n'
typedef long long ll;
using namespace std;
int main(void) {
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
for (int i = 1; i <= n; i++) {
string res;
if (i % 3 == 0 && i % 5 == 0) {
res = "FizzBuzz";
}
else if (i % 3 == 0) {
res = "Fizz";
}
else if (i % 5 == 0) {
res = "Buzz";
} else {
res = to_string(i);
}
cout << res << endl;
}
return 0;
}
kolvlmam3