結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー tailstails
提出日時 2015-12-14 03:17:52
言語 Perl
(5.38.2)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-07-06 21:52:31
合計ジャッジ時間 4,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,376 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 4 ms
5,504 KB
testcase_14 AC 91 ms
15,616 KB
testcase_15 AC 152 ms
19,584 KB
testcase_16 AC 50 ms
10,880 KB
testcase_17 AC 4 ms
5,504 KB
testcase_18 AC 63 ms
12,160 KB
testcase_19 AC 83 ms
14,464 KB
testcase_20 AC 124 ms
19,328 KB
testcase_21 AC 94 ms
13,568 KB
testcase_22 AC 23 ms
7,808 KB
testcase_23 AC 122 ms
17,280 KB
testcase_24 AC 30 ms
8,192 KB
testcase_25 AC 69 ms
13,056 KB
testcase_26 AC 120 ms
18,816 KB
testcase_27 AC 90 ms
15,232 KB
testcase_28 AC 91 ms
15,104 KB
testcase_29 AC 151 ms
19,584 KB
testcase_30 AC 6 ms
5,504 KB
testcase_31 AC 5 ms
5,504 KB
testcase_32 AC 76 ms
12,544 KB
testcase_33 AC 67 ms
12,288 KB
testcase_34 AC 48 ms
10,368 KB
testcase_35 AC 123 ms
16,256 KB
testcase_36 AC 6 ms
5,760 KB
testcase_37 AC 80 ms
13,952 KB
testcase_38 AC 65 ms
12,288 KB
testcase_39 AC 26 ms
7,424 KB
testcase_40 AC 123 ms
18,688 KB
testcase_41 AC 41 ms
8,832 KB
testcase_42 AC 103 ms
16,640 KB
testcase_43 AC 53 ms
10,880 KB
testcase_44 AC 94 ms
15,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($a,$b)=($p,$q)=<>=~/\d+/g;
($a,$b)=($b,$a%$b)while$b;
$a||=1e9;
$p/=$a;$q/=$a;
<>;
($x,$y)=//g,$x%$a||$y%$a||$p%2&&$q%2&&($x+$y)/$a%2||++$-for<>;
print$-;
0