結果
問題 | No.3043 yukicoderへようこそ! |
ユーザー | ugis_prog |
提出日時 | 2019-04-01 23:40:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 950 bytes |
コンパイル時間 | 1,240 ms |
コンパイル使用メモリ | 161,500 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 09:29:08 |
合計ジャッジ時間 | 2,378 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int FizzBuzz()’: main.cpp:39:1: warning: no return statement in function returning non-void [-Wreturn-type] 39 | } | ^
ソースコード
#include<bits/stdc++.h> using namespace std; using s=string; random_device rnd; mt19937 mt(rnd()); uniform_int_distribution<> r(0, 4); int A; void sum(){ long long Sum = 0; for(int i=0;i<A;i++){ long long a; cin >> a; Sum += a; } cout << Sum << endl; } int FizzBuzz(){ int B; string S; cin >> B >> S; int p = r(mt); if(p==0) cout << "Hello World!" << endl; else if(A > 100 && A <= 1000) cout << A+B << " " << S << endl; else if(A <= 100){ if(p < 2){ for(int i=1;i<=A;i++){ if(i%15 == 0) cout << "FizzBuzz\n"; else if(i%5 == 0) cout << "Buzz\n"; else if(i%3 == 0) cout << "Fizz\n"; else cout << to_string(i) + '\n'; } } else cout << A*(A+1)/2 << endl; } } int main(){ int p = r(mt); cin >> A; if(A == 10 || A == 100) sum(); else FizzBuzz(); }