結果
問題 |
No.480 合計
|
ユーザー |
![]() |
提出日時 | 2020-01-30 10:36:17 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 159 bytes |
コンパイル時間 | 214 ms |
コンパイル使用メモリ | 27,264 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-16 03:26:08 |
合計ジャッジ時間 | 885 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 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 0; }