結果
問題 | No.3043 yukicoderへようこそ! |
ユーザー | ugis_prog |
提出日時 | 2019-04-01 23:05:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 974 bytes |
コンパイル時間 | 1,154 ms |
コンパイル使用メモリ | 161,744 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-05 08:48:51 |
合計ジャッジ時間 | 1,568 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using s=string; void sum(){ int N; cin >> N; long long Sum = 0; for(int i=0;i<N;i++){ long long a; cin >> a; Sum += a; } cout << Sum << endl; } void Hello(){ cout << "Hello World!" << endl; } void FizzBuzz(){ int A; cin >> A; 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'; } } void sigma(){ int N; cin >> N; cout << N*(N+1)/2 << endl; } void test(){ int A,B; string S; cin >> A >> B >> S; cout << A+B << " " << S << endl; } int main(){ random_device rnd; mt19937 mt(rnd()); uniform_int_distribution<> r(0, 4); int p = r(mt); if(p == 0) sum(); else if(p == 1) Hello(); else if(p == 2) sigma(); else if(p == 3) FizzBuzz(); else test(); }