結果
| 問題 |
No.480 合計
|
| コンテスト | |
| ユーザー |
hum_op
|
| 提出日時 | 2017-04-11 13:24:56 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 157 bytes |
| コンパイル時間 | 151 ms |
| コンパイル使用メモリ | 27,648 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-18 07:04:41 |
| 合計ジャッジ時間 | 926 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 22 |
ソースコード
#include <stdio.h>
int main(){
int N;
int sum = 0;
int i;
scanf("%d", &N);
for(i = 1; i <= N; i++){
sum += i;
}
printf("%d\n", N);
return 0;
}
hum_op