結果
問題 |
No.480 合計
|
ユーザー |
![]() |
提出日時 | 2018-07-06 19:33:51 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 161 bytes |
コンパイル時間 | 106 ms |
コンパイル使用メモリ | 28,800 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 02:52:35 |
合計ジャッジ時間 | 915 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
#include<stdio.h> int main() { int N; int i; int sum=0; scanf("%d",&N); for(i=1;i<=N;i++){ sum+=i; } printf("%d",sum); return 0; }