結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | fura |
提出日時 | 2020-04-13 02:16:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 277 bytes |
コンパイル時間 | 2,309 ms |
コンパイル使用メモリ | 200,164 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 18:34:55 |
合計ジャッジ時間 | 2,767 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:13:16: warning: converting to non-pointer type 'int' from NULL [-Wconversion-null] 13 | return NULL; | ^~~~
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int n; scanf("%d",&n); for(int i='b'-'a';i<=n;i++){ if(!(i%('p'-'a'))) puts("FizzBuzz"); else if(!(i%('d'-'a'))) puts("Fizz"); else if(!(i%('f'-'a'))) puts("Buzz"); else printf("%d\n",i); } return NULL; }