結果

問題 No.2185 平方数の下6桁
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-01-14 12:38:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 59,660 KB
最終ジャッジ日時 2024-06-07 14:32:00
合計ジャッジ時間 3,781 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,088 KB
testcase_01 AC 39 ms
51,668 KB
testcase_02 AC 49 ms
57,880 KB
testcase_03 AC 38 ms
52,148 KB
testcase_04 AC 45 ms
57,872 KB
testcase_05 AC 45 ms
58,788 KB
testcase_06 AC 44 ms
57,532 KB
testcase_07 AC 38 ms
53,084 KB
testcase_08 AC 45 ms
58,652 KB
testcase_09 AC 39 ms
52,248 KB
testcase_10 AC 45 ms
57,864 KB
testcase_11 AC 38 ms
52,580 KB
testcase_12 AC 45 ms
58,312 KB
testcase_13 AC 40 ms
53,228 KB
testcase_14 AC 45 ms
59,244 KB
testcase_15 AC 41 ms
59,240 KB
testcase_16 AC 42 ms
58,492 KB
testcase_17 AC 38 ms
51,816 KB
testcase_18 AC 45 ms
58,608 KB
testcase_19 AC 41 ms
57,788 KB
testcase_20 AC 47 ms
58,936 KB
testcase_21 AC 46 ms
58,244 KB
testcase_22 AC 43 ms
57,384 KB
testcase_23 AC 45 ms
58,204 KB
testcase_24 AC 42 ms
58,980 KB
testcase_25 AC 46 ms
59,184 KB
testcase_26 AC 45 ms
59,660 KB
testcase_27 AC 43 ms
57,256 KB
testcase_28 AC 42 ms
57,724 KB
testcase_29 AC 42 ms
58,096 KB
testcase_30 AC 45 ms
57,924 KB
testcase_31 AC 46 ms
58,676 KB
testcase_32 AC 42 ms
58,336 KB
testcase_33 AC 42 ms
59,268 KB
testcase_34 AC 45 ms
58,112 KB
testcase_35 AC 47 ms
58,384 KB
testcase_36 AC 42 ms
57,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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