結果
| 問題 | No.1992 Tendon Walk |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-11-23 13:58:25 |
| 言語 | JavaScript (node v23.5.0) |
| 結果 |
AC
|
| 実行時間 | 62 ms / 2,000 ms |
| コード長 | 375 bytes |
| 記録 | |
| コンパイル時間 | 296 ms |
| コンパイル使用メモリ | 6,944 KB |
| 実行使用メモリ | 41,204 KB |
| 最終ジャッジ日時 | 2024-09-24 18:25:29 |
| 合計ジャッジ時間 | 1,436 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 |
ソースコード
function Main(input) {
const x = parseInt(input.replace("\n", ""));
const ab = [2, 2, -1, -1, 2, -1, -1];
let p = 0;
let d = 0;
let ans = 0;
for (let i = 0; i < 100; i++) {
d = ab[i % 7]
p += d;
ans += Math.abs(d);
if (p == x) break;
}
console.log(ans);
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));