結果

問題 No.2185 平方数の下6桁
ユーザー ntudantuda
提出日時 2023-01-14 15:32:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 87,092 KB
実行使用メモリ 75,984 KB
最終ジャッジ日時 2023-08-26 21:33:57
合計ジャッジ時間 4,492 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,404 KB
testcase_01 AC 67 ms
71,408 KB
testcase_02 AC 74 ms
75,712 KB
testcase_03 AC 66 ms
71,344 KB
testcase_04 AC 73 ms
75,632 KB
testcase_05 AC 71 ms
75,816 KB
testcase_06 AC 73 ms
75,856 KB
testcase_07 AC 72 ms
71,600 KB
testcase_08 AC 78 ms
75,824 KB
testcase_09 AC 71 ms
71,304 KB
testcase_10 AC 76 ms
75,772 KB
testcase_11 AC 68 ms
71,092 KB
testcase_12 AC 75 ms
75,776 KB
testcase_13 AC 68 ms
71,204 KB
testcase_14 AC 74 ms
75,860 KB
testcase_15 AC 69 ms
75,792 KB
testcase_16 AC 72 ms
75,948 KB
testcase_17 AC 67 ms
71,252 KB
testcase_18 AC 74 ms
75,880 KB
testcase_19 AC 70 ms
75,888 KB
testcase_20 AC 73 ms
75,576 KB
testcase_21 AC 75 ms
75,876 KB
testcase_22 AC 70 ms
75,820 KB
testcase_23 AC 74 ms
75,836 KB
testcase_24 AC 70 ms
75,852 KB
testcase_25 AC 76 ms
75,876 KB
testcase_26 AC 74 ms
75,760 KB
testcase_27 AC 72 ms
75,796 KB
testcase_28 AC 71 ms
75,796 KB
testcase_29 AC 72 ms
75,968 KB
testcase_30 AC 74 ms
75,984 KB
testcase_31 AC 77 ms
75,808 KB
testcase_32 AC 73 ms
75,796 KB
testcase_33 AC 71 ms
75,928 KB
testcase_34 AC 74 ms
75,848 KB
testcase_35 AC 76 ms
75,772 KB
testcase_36 AC 72 ms
75,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = 10 ** 6
for i in range(x):
    if (i * i) % x == N:
        print("YES")
        break
else:
    print("NO")
0