結果
| 問題 | 
                            No.716 距離
                             | 
                    
| コンテスト | |
| ユーザー | 
                             tororo_shidoro
                         | 
                    
| 提出日時 | 2018-10-21 19:03:15 | 
| 言語 | C  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 178 bytes | 
| コンパイル時間 | 129 ms | 
| コンパイル使用メモリ | 27,904 KB | 
| 実行使用メモリ | 6,824 KB | 
| 最終ジャッジ日時 | 2024-11-19 03:27:48 | 
| 合計ジャッジ時間 | 1,297 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| 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