結果
| 問題 | No.480 合計 |
| コンテスト | |
| ユーザー |
QED0302
|
| 提出日時 | 2018-05-09 15:13:01 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 187 bytes |
| 記録 | |
| コンパイル時間 | 1,783 ms |
| コンパイル使用メモリ | 81,532 KB |
| 実行使用メモリ | 44,916 KB |
| 最終ジャッジ日時 | 2026-03-16 12:46:26 |
| 合計ジャッジ時間 | 3,426 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 22 |
ソースコード
class num{
public static void main(String[] args){
int num = Integer.parseInt(args[0]);
int total = 0;
for(int i = 0;i<=num;i++){
total += i;
}
System.out.print(total);
}
}
QED0302