結果
問題 |
No.480 合計
|
ユーザー |
![]() |
提出日時 | 2018-08-20 21:28:42 |
言語 | C (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 160 bytes |
コンパイル時間 | 223 ms |
コンパイル使用メモリ | 28,672 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 11:26:39 |
合計ジャッジ時間 | 1,103 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 22 |
ソースコード
#include "stdio.h" void main(void){ int num; int i; scanf("%d",&num); for(i=num-1;i>0;i--){ num=i+num; } printf("%d\n",num); }