結果
問題 | No.3043 yukicoderへようこそ! |
ユーザー | ugis_prog |
提出日時 | 2019-04-01 22:21:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 742 bytes |
コンパイル時間 | 1,496 ms |
コンパイル使用メモリ | 167,088 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-05 08:13:38 |
合計ジャッジ時間 | 2,890 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using s=string; int main(){ int A,B; string S; cin >> A >> B; cin >> S; long long sum = B + stoi(S); for(int i=0;i<A-2;i++){ long long a; cin >> a; sum += a; } cout << sum << endl; vector<vector<string>> ans(6); for(int i=1;i<=A;i++){ if(i%15 == 0) ans[0].push_back("FizzBuzz\n"); else if(i%5 == 0) ans[0].push_back("Buzz\n"); else if(i%3 == 0) ans[0].push_back("Fizz\n"); else ans[0].push_back(to_string(i) + '\n'); } ans[1].push_back("Hello World\n"); ans[2].push_back(to_string(A*(A+1)/2)); //ans[3].push_back(to_string(A+B) + " " + S); //for(auto s : ans[0]) cout << s; }