結果
問題 | No.480 合計 |
ユーザー | Mcpu3 |
提出日時 | 2018-04-15 22:26:56 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 161 bytes |
コンパイル時間 | 107 ms |
コンパイル使用メモリ | 28,544 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 00:09:26 |
合計ジャッジ時間 | 807 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
#include <stdio.h> int main(void) { int n; scanf("%d", &n); int sum = 0; for (int i = 1; i <= n; i++) sum += i; printf("%d\n", sum); return 0; }