結果
| 問題 |
No.8022 縛りFizzBuzz (Easy)
|
| コンテスト | |
| ユーザー |
AMeararEX
|
| 提出日時 | 2017-03-31 23:29:01 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
#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;
}
AMeararEX