結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | AMeararEX |
提出日時 | 2017-03-31 23:29:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 496 bytes |
コンパイル時間 | 697 ms |
コンパイル使用メモリ | 80,612 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 06:00:34 |
合計ジャッジ時間 | 1,339 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<string> #include<algorithm> #include<math.h> #include<queue> #include<map> #define ll long long using namespace std; int main() { int n; cin >> n; int three = (int)'$' - (int)'!', five = (int)'&' - (int)'!', zero = (int)'a' - (int)'a', one = (int)'"' - (int)'!'; for (int i = one; i <= n; i++) { if (i%three == zero) cout << "Fizz"; if (i%five == zero)cout << "Buzz"; if (i%three != zero && i%five != zero)cout << i; cout << endl; } return zero; }