結果

問題 No.3054 ほぼ直角二等辺三角形
ユーザー knshnbknshnb
提出日時 2019-04-01 23:32:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-05 09:19:48
合計ジャッジ時間 2,037 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 25 ms
10,880 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 25 ms
10,880 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 24 ms
10,880 KB
testcase_11 AC 25 ms
10,880 KB
testcase_12 AC 26 ms
10,880 KB
testcase_13 AC 26 ms
10,880 KB
testcase_14 AC 25 ms
10,880 KB
testcase_15 AC 31 ms
11,008 KB
testcase_16 AC 28 ms
10,880 KB
testcase_17 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
s = "3 20 119 4059 23660 137903 4684659 27304196 159140519 5406093003 31509019100 183648021599 1070379110496 36361380737780 211929657785303 1235216565974040 41961001862379596 244566641436218639"
s = list(map(int, s.split()))

X = int(input())
a = s[X - 1]
b = a + 1
tmp = a * a + b * b
t = int(math.sqrt(tmp))
if t * t == tmp:
    print(a, b, t)
    exit(0)
for c in range(t - 100, t + 100):
    if c * c == tmp:
        break
assert(c * c == tmp)
print(a, b, c)
0