結果
問題 | No.3043 yukicoderへようこそ! |
ユーザー | springroll |
提出日時 | 2019-04-01 21:38:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 719 bytes |
コンパイル時間 | 1,412 ms |
コンパイル使用メモリ | 169,808 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-05-05 04:11:17 |
合計ジャッジ時間 | 5,048 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long ll; int main(){ cout << "Hello World!" << endl; ll N; cin >> N; ll sum=0; for(ll i=0; i<N; i++) sum += i+1; cout << sum << endl; ll A, B; string S; cin >> A >> B >> S; cout << A+B <<" "<< S << endl; ll n; cin >> n; for(ll i=1; i<=n; i++){ if(i%15==0) cout << "FizzBuzz" << endl; else if(i%3==0) cout << "Fizz" << endl; else if(i%5==0) cout << "Buzz" << endl; else cout << i << endl; } for(int j=0; j<2; j++){ ll m; cin >> m; vector<ll> A(m); ll Sum=0; for(ll i=0; i<m; i++) { ll a; cin >> a; Sum += a; } cout << Sum << endl; } }