結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | aaa aaa |
提出日時 | 2024-08-08 06:11:03 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 551 bytes |
コンパイル時間 | 4,764 ms |
コンパイル使用メモリ | 307,052 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-08 06:11:09 |
合計ジャッジ時間 | 5,588 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #include<atcoder/all> using namespace atcoder; using ll =long long; #define rep(i,n) for(int i=0;i<(n);++i) #define REP(i,n) for(int i=1;i<=(n);++i) #define all(n) n.begin(),n.end() #define rall(n) n.rbegin(),n.rend() int main(){ //ios::sync_with_stdio(false); //cin.tie(nullptr); int n; cin>>n; for(int i=1;i<=n;i++){ if(n%3==0 || n%5==0){ if(n%3==0) cout<<"Fizz"; if((n%5==0)) cout<<"Buzz"; }else cout<<i; cout<<endl; } return 0; }