結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー ysys
提出日時 2022-03-09 21:33:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 133 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 87,340 KB
実行使用メモリ 79,580 KB
最終ジャッジ日時 2023-10-11 22:56:35
合計ジャッジ時間 7,770 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,588 KB
testcase_01 AC 74 ms
71,304 KB
testcase_02 AC 73 ms
71,344 KB
testcase_03 AC 73 ms
71,536 KB
testcase_04 AC 73 ms
71,580 KB
testcase_05 AC 74 ms
71,340 KB
testcase_06 AC 74 ms
71,344 KB
testcase_07 AC 75 ms
71,320 KB
testcase_08 AC 75 ms
71,336 KB
testcase_09 WA -
testcase_10 AC 73 ms
71,504 KB
testcase_11 AC 75 ms
71,152 KB
testcase_12 AC 75 ms
71,152 KB
testcase_13 WA -
testcase_14 AC 76 ms
71,080 KB
testcase_15 AC 72 ms
71,236 KB
testcase_16 AC 75 ms
71,528 KB
testcase_17 AC 75 ms
71,240 KB
testcase_18 WA -
testcase_19 AC 76 ms
71,476 KB
testcase_20 AC 76 ms
71,340 KB
testcase_21 AC 77 ms
71,252 KB
testcase_22 AC 77 ms
71,360 KB
testcase_23 AC 78 ms
71,452 KB
testcase_24 WA -
testcase_25 AC 74 ms
71,240 KB
testcase_26 AC 82 ms
71,252 KB
testcase_27 AC 76 ms
71,536 KB
testcase_28 WA -
testcase_29 AC 77 ms
71,400 KB
testcase_30 AC 76 ms
71,404 KB
testcase_31 WA -
testcase_32 AC 78 ms
71,336 KB
testcase_33 AC 77 ms
71,368 KB
testcase_34 AC 77 ms
71,232 KB
testcase_35 AC 77 ms
71,072 KB
testcase_36 AC 74 ms
71,552 KB
testcase_37 TLE -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

X, A, Y, B = map(int, input().split())
C = 0
while X % Y == 0:
  X //= Y
  C += 1

if C * A >= B:
  print('Yes')
else:
  print('No')
0