結果
問題 |
No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
|
ユーザー |
![]() |
提出日時 | 2017-09-23 11:29:58 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 76 ms / 3,000 ms |
コード長 | 157 bytes |
コンパイル時間 | 505 ms |
コンパイル使用メモリ | 53,616 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-25 17:47:08 |
合計ジャッジ時間 | 1,922 ms |
ジャッジサーバーID (参考情報) |
judge4 / 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; }