結果
問題 | No.3054 ほぼ直角二等辺三角形 |
ユーザー | neetprogrammer |
提出日時 | 2020-05-21 03:27:40 |
言語 | JavaScript (node v21.7.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 604 bytes |
コンパイル時間 | 50 ms |
コンパイル使用メモリ | 6,820 KB |
実行使用メモリ | 48,932 KB |
最終ジャッジ日時 | 2024-10-13 01:59:12 |
合計ジャッジ時間 | 6,124 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 64 ms
38,912 KB |
testcase_02 | AC | 64 ms
39,552 KB |
testcase_03 | AC | 66 ms
42,496 KB |
testcase_04 | AC | 68 ms
43,136 KB |
testcase_05 | AC | 77 ms
44,160 KB |
testcase_06 | AC | 86 ms
43,904 KB |
testcase_07 | AC | 392 ms
43,776 KB |
testcase_08 | AC | 1,227 ms
43,904 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
function f(a) { return (2 * (a * a)) + (2 * a) + 1 } function check(a, c) { var b = (a + 1); var temp = (a * a) + (b * b); if (temp === (c * c)) return true; return false; } function Main(input) { var loop = Math.pow(10, parseInt(input)); for (let i = 0; i < loop; i++) { var c = Math.sqrt(f(i)); if (Number.isInteger(c)) { if (check(i, c)) { if (c.toString().length >= input) { console.log(i + " " + (i + 1) + " " + c); break; } } } } } // Don't edit this line! Main(require("fs").readFileSync("/dev/stdin", "utf8"));