結果

問題 No.1224 I hate Sqrt Inequality
ユーザー IHIH
提出日時 2020-09-20 21:13:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 237 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 72,568 KB
最終ジャッジ日時 2024-06-24 10:58:47
合計ジャッジ時間 4,046 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,900 KB
testcase_01 AC 37 ms
52,080 KB
testcase_02 AC 37 ms
53,316 KB
testcase_03 AC 37 ms
51,752 KB
testcase_04 AC 36 ms
52,272 KB
testcase_05 AC 37 ms
53,088 KB
testcase_06 AC 36 ms
52,540 KB
testcase_07 AC 36 ms
52,444 KB
testcase_08 AC 36 ms
52,464 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
x = [a]
i = 0
while True:
  a = a%b
  a = 10*a
  if a in x and a != 0:
    print("Yes")
    exit()
  else:
    if i == b - 1 or a ==0:
      print("No")
      exit()
    else:
      i += 1
      x.append(a)
0