結果

問題 No.1183 コイン遊び
ユーザー yuruhiyayuruhiya
提出日時 2021-01-31 18:15:50
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,534 ms / 2,000 ms
コード長 79 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 169,080 KB
最終ジャッジ日時 2024-06-29 02:39:23
合計ジャッジ時間 35,749 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,032 KB
testcase_01 AC 89 ms
11,904 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 87 ms
12,032 KB
testcase_05 AC 86 ms
12,160 KB
testcase_06 AC 86 ms
12,160 KB
testcase_07 AC 88 ms
12,160 KB
testcase_08 AC 92 ms
12,288 KB
testcase_09 AC 93 ms
12,032 KB
testcase_10 AC 114 ms
15,232 KB
testcase_11 AC 165 ms
22,528 KB
testcase_12 AC 865 ms
101,564 KB
testcase_13 AC 800 ms
99,548 KB
testcase_14 AC 1,291 ms
165,620 KB
testcase_15 AC 1,401 ms
160,876 KB
testcase_16 AC 1,386 ms
161,008 KB
testcase_17 AC 1,384 ms
160,696 KB
testcase_18 AC 1,393 ms
161,116 KB
testcase_19 AC 1,396 ms
161,144 KB
testcase_20 AC 1,413 ms
160,804 KB
testcase_21 AC 1,182 ms
168,924 KB
testcase_22 AC 1,178 ms
168,928 KB
testcase_23 AC 1,180 ms
168,784 KB
testcase_24 AC 1,177 ms
169,080 KB
testcase_25 AC 1,408 ms
161,016 KB
testcase_26 AC 1,391 ms
160,948 KB
testcase_27 AC 1,384 ms
161,124 KB
testcase_28 AC 1,408 ms
161,088 KB
testcase_29 AC 1,167 ms
168,928 KB
testcase_30 AC 1,534 ms
160,852 KB
testcase_31 AC 1,396 ms
160,980 KB
testcase_32 AC 1,410 ms
160,852 KB
testcase_33 AC 1,394 ms
160,824 KB
testcase_34 AC 1,398 ms
161,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n,a,b=$<.map{_1.split.map &:to_i}
p a.zip(b).map{_1!=_2}.chunk{_1}.count{_1[0]}
0