結果
問題 |
No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
|
ユーザー |
![]() |
提出日時 | 2017-09-23 11:04:08 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 77 ms / 2,000 ms |
コード長 | 157 bytes |
コンパイル時間 | 443 ms |
コンパイル使用メモリ | 55,112 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 03:57:41 |
合計ジャッジ時間 | 1,735 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 15 |
ソースコード
#include <iostream> int main(){ int N,x; int64_t n=0,t=0; std::cin>>N; for(x=0;x<N;x++){ std::cin>>n; t+=n; } std::cout<<t<<std::endl; return 0; }