結果
問題 |
No.882 約数倍数
|
ユーザー |
![]() |
提出日時 | 2020-11-15 16:43:41 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 33 ms / 500 ms |
コード長 | 178 bytes |
コンパイル時間 | 129 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-23 01:16:31 |
合計ジャッジ時間 | 1,413 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 10 |
ソースコード
intstr = input() intstr_s = intstr.split(" ") big_n = int(intstr_s[0]) small_n = int(intstr_s[1]) result="" if big_n%small_n==0: result="YES" else: result="NO" print(result)