結果
問題 |
No.480 合計
|
ユーザー |
![]() |
提出日時 | 2020-01-30 10:36:46 |
言語 | C (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 161 bytes |
コンパイル時間 | 104 ms |
コンパイル使用メモリ | 28,544 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 03:26:11 |
合計ジャッジ時間 | 839 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 22 |
ソースコード
#include <stdio.h> int main(void) { int n; int sum = 0; scanf("%d", &n); for(int i = 0; i <= n; i++) { sum += i; } return sum; }