結果
| 問題 |
No.480 合計
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-07-10 18:36:13 |
| 言語 | TypeScript (5.7.2) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 248 bytes |
| コンパイル時間 | 7,607 ms |
| コンパイル使用メモリ | 229,860 KB |
| 実行使用メモリ | 43,376 KB |
| 最終ジャッジ日時 | 2024-12-31 16:13:49 |
| 合計ジャッジ時間 | 9,918 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 22 |
ソースコード
function Main(input) {
const data = input.split("\n")
let result= 0;
for (let i = 0; i < Number(data[0]); i++) {
result = result + i;
}
console.log(result);
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));