結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー wasukenwasuken
提出日時 2019-03-15 21:28:33
言語 Ruby
(3.2.2)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 57 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 11,412 KB
実行使用メモリ 15,924 KB
最終ジャッジ日時 2023-09-14 12:58:41
合計ジャッジ時間 3,384 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
15,816 KB
testcase_01 AC 81 ms
15,840 KB
testcase_02 AC 80 ms
15,628 KB
testcase_03 AC 83 ms
15,704 KB
testcase_04 AC 82 ms
15,732 KB
testcase_05 AC 82 ms
15,632 KB
testcase_06 AC 82 ms
15,740 KB
testcase_07 AC 82 ms
15,740 KB
testcase_08 AC 82 ms
15,780 KB
testcase_09 AC 82 ms
15,760 KB
testcase_10 AC 81 ms
15,828 KB
testcase_11 AC 81 ms
15,620 KB
testcase_12 AC 80 ms
15,708 KB
testcase_13 AC 81 ms
15,924 KB
testcase_14 AC 82 ms
15,636 KB
testcase_15 AC 81 ms
15,856 KB
testcase_16 AC 81 ms
15,828 KB
testcase_17 AC 82 ms
15,804 KB
testcase_18 AC 81 ms
15,768 KB
testcase_19 AC 82 ms
15,796 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a = gets.to_i
b = gets.to_i
puts b % a == 0 ? "Yes": "No"
0