結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー cielciel
提出日時 2015-12-14 00:17:44
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 93 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-09-15 11:51:07
合計ジャッジ時間 7,798 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 85 ms
12,032 KB
testcase_03 AC 84 ms
12,032 KB
testcase_04 WA -
testcase_05 RE -
testcase_06 AC 85 ms
12,160 KB
testcase_07 AC 85 ms
12,032 KB
testcase_08 AC 85 ms
12,160 KB
testcase_09 AC 87 ms
12,032 KB
testcase_10 AC 86 ms
12,160 KB
testcase_11 WA -
testcase_12 AC 86 ms
12,160 KB
testcase_13 AC 87 ms
12,032 KB
testcase_14 WA -
testcase_15 AC 209 ms
12,160 KB
testcase_16 AC 135 ms
12,160 KB
testcase_17 AC 87 ms
12,288 KB
testcase_18 AC 148 ms
12,288 KB
testcase_19 WA -
testcase_20 AC 208 ms
12,288 KB
testcase_21 WA -
testcase_22 AC 109 ms
12,288 KB
testcase_23 AC 189 ms
12,288 KB
testcase_24 AC 115 ms
12,288 KB
testcase_25 WA -
testcase_26 AC 204 ms
12,288 KB
testcase_27 WA -
testcase_28 AC 172 ms
12,160 KB
testcase_29 AC 211 ms
12,032 KB
testcase_30 AC 93 ms
12,288 KB
testcase_31 AC 90 ms
12,032 KB
testcase_32 AC 153 ms
12,416 KB
testcase_33 WA -
testcase_34 AC 134 ms
12,160 KB
testcase_35 WA -
testcase_36 AC 92 ms
12,160 KB
testcase_37 AC 162 ms
12,288 KB
testcase_38 AC 148 ms
12,288 KB
testcase_39 WA -
testcase_40 AC 202 ms
12,160 KB
testcase_41 WA -
testcase_42 AC 185 ms
12,416 KB
testcase_43 AC 137 ms
12,160 KB
testcase_44 AC 177 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a,b=gets.split.map &:to_i
g=a.gcd b
gets;p $<.count{|e|x,y=e.split.map &:to_i;x%g==0&&y%g==0}
0