結果

問題 No.2185 平方数の下6桁
ユーザー prussian_coderprussian_coder
提出日時 2023-02-03 20:59:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 1,394 ms
コンパイル使用メモリ 87,212 KB
実行使用メモリ 76,184 KB
最終ジャッジ日時 2023-09-15 16:17:48
合計ジャッジ時間 6,194 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,476 KB
testcase_01 AC 72 ms
71,476 KB
testcase_02 AC 76 ms
76,184 KB
testcase_03 AC 71 ms
71,368 KB
testcase_04 AC 82 ms
76,080 KB
testcase_05 AC 79 ms
75,972 KB
testcase_06 AC 79 ms
75,816 KB
testcase_07 AC 71 ms
71,544 KB
testcase_08 AC 77 ms
75,788 KB
testcase_09 AC 71 ms
71,684 KB
testcase_10 AC 77 ms
76,056 KB
testcase_11 AC 72 ms
71,524 KB
testcase_12 AC 78 ms
75,792 KB
testcase_13 AC 69 ms
71,156 KB
testcase_14 AC 77 ms
76,048 KB
testcase_15 AC 75 ms
76,132 KB
testcase_16 AC 73 ms
75,816 KB
testcase_17 AC 71 ms
71,368 KB
testcase_18 AC 78 ms
76,052 KB
testcase_19 AC 76 ms
76,092 KB
testcase_20 AC 76 ms
76,072 KB
testcase_21 AC 77 ms
76,108 KB
testcase_22 AC 75 ms
76,036 KB
testcase_23 AC 80 ms
76,028 KB
testcase_24 AC 75 ms
75,980 KB
testcase_25 AC 79 ms
76,072 KB
testcase_26 AC 80 ms
76,072 KB
testcase_27 AC 75 ms
75,964 KB
testcase_28 AC 76 ms
76,108 KB
testcase_29 AC 76 ms
76,084 KB
testcase_30 AC 79 ms
75,956 KB
testcase_31 AC 77 ms
75,972 KB
testcase_32 AC 74 ms
75,968 KB
testcase_33 AC 75 ms
76,012 KB
testcase_34 AC 77 ms
75,960 KB
testcase_35 AC 78 ms
75,980 KB
testcase_36 AC 74 ms
75,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=int(input())

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