結果
問題 | No.3054 ほぼ直角二等辺三角形 |
ユーザー | neetprogrammer |
提出日時 | 2020-05-25 03:40:09 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 538 bytes |
コンパイル時間 | 371 ms |
コンパイル使用メモリ | 82,268 KB |
実行使用メモリ | 81,952 KB |
最終ジャッジ日時 | 2024-10-12 21:04:10 |
合計ジャッジ時間 | 6,944 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
57,472 KB |
testcase_01 | AC | 37 ms
51,968 KB |
testcase_02 | AC | 37 ms
52,352 KB |
testcase_03 | AC | 41 ms
58,752 KB |
testcase_04 | AC | 41 ms
59,008 KB |
testcase_05 | AC | 42 ms
60,800 KB |
testcase_06 | AC | 52 ms
70,656 KB |
testcase_07 | AC | 315 ms
75,264 KB |
testcase_08 | AC | 1,594 ms
75,648 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
from math import sqrt import time def f(a): return (2 * (a * a)) + (2 * a) + 1 def check(a, c): b = (a + 1) temp = (a * a) + (b * b) if temp == (c * c): return True return False line = input() digit = int(line) start = 10 ** digit for i in range(1, start): # for i in range(1, 10000000): c = sqrt(f(i)) if c.is_integer(): c = int(c) if check(i, c): if len(str(c)) == digit: print(str(i) + " " + str(i + 1) + " " + str(c)) break