結果
| 問題 | No.716 距離 |
| コンテスト | |
| ユーザー |
tororo_shidoro
|
| 提出日時 | 2018-10-21 19:02:45 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 178 bytes |
| 記録 | |
| コンパイル時間 | 128 ms |
| コンパイル使用メモリ | 36,544 KB |
| 最終ジャッジ日時 | 2026-02-22 02:02:05 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 40 |
ソースコード
#include <stdio.h>
int main(void){
int a,i,n,result=0;
scanf("%d",&a);
for(i=0;i<a;i++){
scanf("%d",&n);
result += n;
}
printf("%d",result);
}
tororo_shidoro