結果

問題 No.882 約数倍数
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-07 16:39:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 33 ms / 500 ms
コード長 60 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 53,488 KB
最終ジャッジ日時 2024-07-06 21:55:51
合計ジャッジ時間 1,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,248 KB
testcase_01 AC 31 ms
52,076 KB
testcase_02 AC 30 ms
52,272 KB
testcase_03 AC 30 ms
51,868 KB
testcase_04 AC 29 ms
51,816 KB
testcase_05 AC 30 ms
52,640 KB
testcase_06 AC 31 ms
52,416 KB
testcase_07 AC 31 ms
51,956 KB
testcase_08 AC 30 ms
52,620 KB
testcase_09 AC 30 ms
52,148 KB
testcase_10 AC 30 ms
52,072 KB
testcase_11 AC 30 ms
53,488 KB
testcase_12 AC 31 ms
52,884 KB
testcase_13 AC 30 ms
53,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
print("NO" if a%b else "YES")
0