結果

問題 No.2185 平方数の下6桁
ユーザー ikomaikoma
提出日時 2023-01-13 21:38:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 58,904 KB
最終ジャッジ日時 2024-12-24 16:48:04
合計ジャッジ時間 3,353 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,744 KB
testcase_01 AC 35 ms
51,700 KB
testcase_02 AC 43 ms
58,136 KB
testcase_03 AC 37 ms
53,440 KB
testcase_04 AC 42 ms
57,644 KB
testcase_05 AC 49 ms
57,680 KB
testcase_06 AC 51 ms
58,456 KB
testcase_07 AC 43 ms
52,576 KB
testcase_08 AC 50 ms
58,248 KB
testcase_09 AC 41 ms
53,712 KB
testcase_10 AC 48 ms
58,144 KB
testcase_11 AC 40 ms
51,908 KB
testcase_12 AC 55 ms
57,712 KB
testcase_13 AC 43 ms
51,748 KB
testcase_14 AC 54 ms
57,928 KB
testcase_15 AC 45 ms
58,652 KB
testcase_16 AC 46 ms
57,592 KB
testcase_17 AC 42 ms
52,620 KB
testcase_18 AC 50 ms
58,420 KB
testcase_19 AC 48 ms
57,832 KB
testcase_20 AC 52 ms
58,796 KB
testcase_21 AC 52 ms
58,796 KB
testcase_22 AC 47 ms
57,396 KB
testcase_23 AC 52 ms
58,476 KB
testcase_24 AC 46 ms
58,300 KB
testcase_25 AC 47 ms
57,456 KB
testcase_26 AC 49 ms
58,136 KB
testcase_27 AC 46 ms
57,808 KB
testcase_28 AC 46 ms
58,280 KB
testcase_29 AC 49 ms
58,432 KB
testcase_30 AC 52 ms
58,200 KB
testcase_31 AC 50 ms
57,696 KB
testcase_32 AC 48 ms
58,372 KB
testcase_33 AC 47 ms
57,868 KB
testcase_34 AC 51 ms
58,292 KB
testcase_35 AC 51 ms
57,928 KB
testcase_36 AC 45 ms
58,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=int(input())

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