結果

問題 No.2185 平方数の下6桁
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-01-14 12:38:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 1,799 ms
コンパイル使用メモリ 86,668 KB
実行使用メモリ 75,864 KB
最終ジャッジ日時 2023-08-26 18:59:50
合計ジャッジ時間 6,041 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
71,172 KB
testcase_01 AC 62 ms
71,224 KB
testcase_02 AC 71 ms
75,848 KB
testcase_03 AC 62 ms
70,976 KB
testcase_04 AC 68 ms
75,664 KB
testcase_05 AC 66 ms
75,848 KB
testcase_06 AC 65 ms
75,684 KB
testcase_07 AC 61 ms
70,972 KB
testcase_08 AC 67 ms
75,808 KB
testcase_09 AC 60 ms
71,060 KB
testcase_10 AC 66 ms
75,712 KB
testcase_11 AC 61 ms
71,136 KB
testcase_12 AC 65 ms
75,728 KB
testcase_13 AC 63 ms
71,208 KB
testcase_14 AC 69 ms
75,728 KB
testcase_15 AC 66 ms
75,656 KB
testcase_16 AC 64 ms
75,640 KB
testcase_17 AC 62 ms
70,964 KB
testcase_18 AC 67 ms
75,612 KB
testcase_19 AC 64 ms
75,596 KB
testcase_20 AC 68 ms
75,660 KB
testcase_21 AC 70 ms
75,788 KB
testcase_22 AC 64 ms
75,700 KB
testcase_23 AC 69 ms
75,388 KB
testcase_24 AC 62 ms
75,864 KB
testcase_25 AC 69 ms
75,724 KB
testcase_26 AC 71 ms
75,568 KB
testcase_27 AC 65 ms
75,392 KB
testcase_28 AC 65 ms
75,600 KB
testcase_29 AC 64 ms
75,688 KB
testcase_30 AC 65 ms
75,504 KB
testcase_31 AC 68 ms
75,784 KB
testcase_32 AC 64 ms
75,560 KB
testcase_33 AC 65 ms
75,396 KB
testcase_34 AC 70 ms
75,864 KB
testcase_35 AC 71 ms
75,600 KB
testcase_36 AC 66 ms
75,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(10**6):
    if i**2%(10**6) == n:
        print("YES")
        exit()
print("NO")
0