結果

問題 No.1183 コイン遊び
ユーザー shi-moshi-mo
提出日時 2020-09-28 23:44:05
言語 Ruby
(3.3.0)
結果
AC  
実行時間 776 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 11,312 KB
実行使用メモリ 69,392 KB
最終ジャッジ日時 2023-09-15 18:13:16
合計ジャッジ時間 16,130 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
15,124 KB
testcase_01 AC 77 ms
15,400 KB
testcase_02 AC 78 ms
15,112 KB
testcase_03 AC 77 ms
15,180 KB
testcase_04 AC 78 ms
15,268 KB
testcase_05 AC 78 ms
15,156 KB
testcase_06 AC 78 ms
15,244 KB
testcase_07 AC 79 ms
15,156 KB
testcase_08 AC 79 ms
15,248 KB
testcase_09 AC 79 ms
15,092 KB
testcase_10 AC 89 ms
16,160 KB
testcase_11 AC 110 ms
16,784 KB
testcase_12 AC 395 ms
20,344 KB
testcase_13 AC 362 ms
19,736 KB
testcase_14 AC 550 ms
22,588 KB
testcase_15 AC 585 ms
22,772 KB
testcase_16 AC 593 ms
23,060 KB
testcase_17 AC 582 ms
23,172 KB
testcase_18 AC 592 ms
23,176 KB
testcase_19 AC 591 ms
23,044 KB
testcase_20 AC 589 ms
23,308 KB
testcase_21 AC 331 ms
21,360 KB
testcase_22 AC 318 ms
21,264 KB
testcase_23 AC 407 ms
69,392 KB
testcase_24 AC 329 ms
21,528 KB
testcase_25 AC 593 ms
22,868 KB
testcase_26 AC 592 ms
23,068 KB
testcase_27 AC 589 ms
23,000 KB
testcase_28 AC 600 ms
23,064 KB
testcase_29 AC 332 ms
21,484 KB
testcase_30 AC 776 ms
22,736 KB
testcase_31 AC 592 ms
23,284 KB
testcase_32 AC 590 ms
23,080 KB
testcase_33 AC 583 ms
23,192 KB
testcase_34 AC 582 ms
22,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets # discard N
a = gets.gsub(' ', '').to_i(2)
b = gets.gsub(' ', '').to_i(2)
xor = (a ^ b).to_s(2)
xor.gsub!(/1+/, '1')
xor.gsub!(/0+/, '')
puts xor.size
0