結果

問題 No.2185 平方数の下6桁
ユーザー sepa38sepa38
提出日時 2023-01-13 21:31:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 745 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 138,752 KB
最終ジャッジ日時 2024-06-06 22:02:34
合計ジャッジ時間 24,716 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 743 ms
138,368 KB
testcase_01 AC 736 ms
137,984 KB
testcase_02 AC 733 ms
138,368 KB
testcase_03 AC 736 ms
137,984 KB
testcase_04 AC 739 ms
138,112 KB
testcase_05 AC 743 ms
138,368 KB
testcase_06 AC 722 ms
138,496 KB
testcase_07 AC 725 ms
138,112 KB
testcase_08 AC 722 ms
137,984 KB
testcase_09 AC 736 ms
138,112 KB
testcase_10 AC 720 ms
138,112 KB
testcase_11 AC 733 ms
138,112 KB
testcase_12 AC 745 ms
138,752 KB
testcase_13 AC 718 ms
138,240 KB
testcase_14 AC 739 ms
138,496 KB
testcase_15 AC 714 ms
138,112 KB
testcase_16 AC 729 ms
138,112 KB
testcase_17 AC 715 ms
138,112 KB
testcase_18 AC 728 ms
138,496 KB
testcase_19 AC 724 ms
138,240 KB
testcase_20 AC 715 ms
138,112 KB
testcase_21 AC 712 ms
138,112 KB
testcase_22 AC 716 ms
138,112 KB
testcase_23 AC 725 ms
138,496 KB
testcase_24 AC 727 ms
138,240 KB
testcase_25 AC 725 ms
138,752 KB
testcase_26 AC 726 ms
138,752 KB
testcase_27 AC 722 ms
138,240 KB
testcase_28 AC 719 ms
137,984 KB
testcase_29 AC 711 ms
138,368 KB
testcase_30 AC 702 ms
138,112 KB
testcase_31 AC 720 ms
138,112 KB
testcase_32 AC 727 ms
138,368 KB
testcase_33 AC 727 ms
138,752 KB
testcase_34 AC 727 ms
138,112 KB
testcase_35 AC 722 ms
138,240 KB
testcase_36 AC 719 ms
138,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lim = 10 ** 7
flg = [0] * lim
flg[0] = 1
for i in range(lim):
  if flg[i]:
    continue
  while True:
    i = (i ** 2) % lim
    if flg[i]:
      break
    flg[i] = 1
s = int(input())
print("YES" if flg[s] else "NO")
0