結果

問題 No.3022 縛りFizzBuzz (Easy)
ユーザー AMeararEXAMeararEX
提出日時 2017-03-31 23:29:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 78,852 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-21 12:08:18
合計ジャッジ時間 1,415 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0