結果
| 問題 | No.480 合計 |
| コンテスト | |
| ユーザー |
Ytz_Ichi
|
| 提出日時 | 2018-07-16 04:35:19 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 123 bytes |
| 記録 | |
| コンパイル時間 | 157 ms |
| コンパイル使用メモリ | 36,068 KB |
| 最終ジャッジ日時 | 2026-02-22 01:23:22 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 22 |
ソースコード
#include <stdio.h>
int main(){
int i,s=0;
scanf("%d\n", &i);
while(!i){
s+=i;
i--;
}
printf("%d\n",s);
}
Ytz_Ichi