結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー Goltermann大和
提出日時 2021-10-29 21:57:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 98 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,408 KB
最終ジャッジ日時 2024-10-07 11:07:28
合計ジャッジ時間 3,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 3 TLE * 1 -- * 46
権限があれば一括ダウンロードができます

ソースコード

diff #

x,a,y,b = map(int,input().split())
if (x**a) % (y**b) == 0:
    print("Yes")
else:
    print("No")
0