結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | chigichan24 |
提出日時 | 2014-11-08 12:03:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,038 bytes |
コンパイル時間 | 547 ms |
コンパイル使用メモリ | 84,276 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-06-10 01:44:42 |
合計ジャッジ時間 | 937 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:38:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 38 | scanf("%d",&n); | ~~~~~^~~~~~~~~
ソースコード
#include <cstdio> #include <cstdlib> #include <cmath> #include <cstring> #include <cctype> #include <complex> #include <iostream> #include <sstream> #include <algorithm> #include <functional> #include <vector> #include <string> #include <stack> #include <queue> #include <map> #include <set> #include <bitset> #include <numeric> #define INF 1<<30 #define EPS 1e-15 const int dx[] = {1,0,-1,0,1,-1,-1,1}; const int dy[] = {0,1,0,-1,1,1,-1,-1}; #define PB push_back #define mk make_pair #define fi first #define se second #define reps(i,j,k) for(int i=j;i<k;i++) #define rep(i,j) reps(i,0,j) #define MOD 1000000007 using namespace std; typedef long long ll; typedef pair<int,int> Pii; typedef vector<int> vi; typedef vector<vi> vvi; int main(){ int n; scanf("%d",&n); rep(i,n){ bool flg = false; if((i+1) % 3 == 0){ printf("Fizz"); flg = true; } if((i+1) % 5 == 0){ printf("Buzz"); flg = true; } if(!flg){ printf("%d",i+1); } puts(""); } return 0; }