結果
問題 | No.1593 Perfect Distance |
ユーザー | osm ibt |
提出日時 | 2021-07-10 12:26:54 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 171 bytes |
コンパイル時間 | 188 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 64,512 KB |
最終ジャッジ日時 | 2024-07-02 01:53:05 |
合計ジャッジ時間 | 5,975 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
57,216 KB |
testcase_01 | AC | 42 ms
51,696 KB |
testcase_02 | AC | 43 ms
51,840 KB |
testcase_03 | AC | 42 ms
52,224 KB |
testcase_04 | AC | 40 ms
52,224 KB |
testcase_05 | AC | 39 ms
51,712 KB |
testcase_06 | AC | 43 ms
57,344 KB |
testcase_07 | AC | 44 ms
58,368 KB |
testcase_08 | AC | 48 ms
58,752 KB |
testcase_09 | AC | 203 ms
59,520 KB |
testcase_10 | AC | 1,626 ms
59,264 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
n = int(input()) ret = 0 for x in range(1, n): yy = n * n - x * x i = 1 while i*i<=yy: if i * i == yy: ret += 1 i += 1 print(ret)