結果

問題 No.2185 平方数の下6桁
ユーザー googol_S0googol_S0
提出日時 2023-01-13 22:06:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 100 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 87,208 KB
実行使用メモリ 75,968 KB
最終ジャッジ日時 2023-08-26 03:52:33
合計ジャッジ時間 4,452 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,144 KB
testcase_01 AC 70 ms
71,488 KB
testcase_02 AC 77 ms
75,780 KB
testcase_03 AC 73 ms
71,352 KB
testcase_04 AC 77 ms
75,756 KB
testcase_05 AC 78 ms
75,752 KB
testcase_06 AC 77 ms
75,592 KB
testcase_07 AC 70 ms
71,400 KB
testcase_08 AC 78 ms
75,744 KB
testcase_09 AC 70 ms
71,324 KB
testcase_10 AC 79 ms
75,808 KB
testcase_11 AC 71 ms
71,400 KB
testcase_12 AC 77 ms
75,796 KB
testcase_13 AC 69 ms
71,540 KB
testcase_14 AC 76 ms
75,708 KB
testcase_15 AC 73 ms
75,676 KB
testcase_16 AC 73 ms
75,780 KB
testcase_17 AC 71 ms
71,488 KB
testcase_18 AC 78 ms
75,760 KB
testcase_19 AC 74 ms
75,724 KB
testcase_20 AC 76 ms
75,780 KB
testcase_21 AC 76 ms
75,776 KB
testcase_22 AC 74 ms
75,808 KB
testcase_23 AC 76 ms
75,504 KB
testcase_24 AC 74 ms
75,800 KB
testcase_25 AC 78 ms
75,848 KB
testcase_26 AC 77 ms
75,736 KB
testcase_27 AC 74 ms
75,752 KB
testcase_28 AC 73 ms
75,664 KB
testcase_29 AC 74 ms
75,672 KB
testcase_30 AC 78 ms
75,524 KB
testcase_31 AC 76 ms
75,712 KB
testcase_32 AC 74 ms
75,732 KB
testcase_33 AC 71 ms
75,968 KB
testcase_34 AC 75 ms
75,780 KB
testcase_35 AC 77 ms
75,676 KB
testcase_36 AC 72 ms
75,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=int(input())
for i in range(1000000):
  if i*i%1000000==S:
    print('YES')
    exit()
print('NO')
0