結果
| 問題 | No.480 合計 |
| コンテスト | |
| ユーザー |
atention
|
| 提出日時 | 2022-07-29 00:07:22 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 203 bytes |
| 記録 | |
| コンパイル時間 | 2,058 ms |
| コンパイル使用メモリ | 81,680 KB |
| 実行使用メモリ | 126,116 KB |
| 最終ジャッジ日時 | 2026-04-02 08:26:44 |
| 合計ジャッジ時間 | 3,425 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 22 |
ソースコード
class Main{
public static void main(String[] args){
int total = 0;
int cnt = Integer.parseInt(args[0]);
for(int i=0;i<=cnt;i++){
total += i;
}
System.out.print(String.valueOf(total));
}
}
atention