結果
| 問題 | No.480 合計 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-08-24 11:48:29 |
| 言語 | JavaScript (node v25.8.2) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 237 bytes |
| 記録 | |
| コンパイル時間 | 154 ms |
| コンパイル使用メモリ | 7,968 KB |
| 実行使用メモリ | 54,712 KB |
| 最終ジャッジ日時 | 2026-05-06 13:57:42 |
| 合計ジャッジ時間 | 3,458 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 WA * 20 |
ソースコード
function Main(input) {
const N = input[0];
let cal = 0;
for(let i = 1; i <= N; i++) {
cal = cal + i;
}
console.log(cal);
}
// Don't edit this line!
Main(require("fs").readFileSync("/dev/stdin", "utf8"));