結果

問題 No.882 約数倍数
ユーザー dangodango
提出日時 2023-06-12 21:30:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 500 ms
コード長 68 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 52,968 KB
最終ジャッジ日時 2024-06-11 21:27:59
合計ジャッジ時間 1,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,276 KB
testcase_01 AC 32 ms
52,140 KB
testcase_02 AC 33 ms
51,904 KB
testcase_03 AC 34 ms
52,444 KB
testcase_04 AC 33 ms
52,664 KB
testcase_05 AC 35 ms
51,852 KB
testcase_06 AC 33 ms
52,968 KB
testcase_07 AC 32 ms
52,216 KB
testcase_08 AC 33 ms
52,640 KB
testcase_09 AC 33 ms
52,132 KB
testcase_10 AC 33 ms
52,368 KB
testcase_11 AC 33 ms
51,996 KB
testcase_12 AC 32 ms
52,364 KB
testcase_13 AC 34 ms
51,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int,input().split())
print('YES' if A % B == 0 else 'NO')
0