結果
問題 | No.3043 yukicoderへようこそ! |
ユーザー | ugis_prog |
提出日時 | 2019-04-01 22:26:07 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 743 bytes |
コンパイル時間 | 1,304 ms |
コンパイル使用メモリ | 157,404 KB |
実行使用メモリ | 13,824 KB |
最終ジャッジ日時 | 2024-05-05 08:18:51 |
合計ジャッジ時間 | 7,485 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘long long int sum()’: main.cpp:16:1: warning: no return statement in function returning non-void [-Wreturn-type] 16 | } | ^
ソースコード
#include<bits/stdc++.h> using namespace std; using s=string; long long 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; } int main(){ sum(); /* 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; */ }