結果

問題 No.3054 ほぼ直角二等辺三角形
ユーザー knshnbknshnb
提出日時 2019-04-01 23:30:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-05 09:17:02
合計ジャッジ時間 1,835 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 26 ms
10,880 KB
testcase_15 AC 28 ms
10,880 KB
testcase_16 AC 28 ms
10,752 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))
for c in range(t - 100, t + 100):
    if c * c == tmp:
        break
assert(c * c == tmp)
print(a, b, c)
0