結果

問題 No.884 Eat and Add
ユーザー yuruhiyayuruhiya
提出日時 2020-10-22 21:10:20
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 100 bytes
コンパイル時間 11,559 ms
コンパイル使用メモリ 297,276 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 21:29:38
合計ジャッジ時間 12,403 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 9 ms
6,940 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 7 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

puts read_line.split(/0{2,}/, remove_empty: true).sum { |s|
  {s.count('0') + 2, s.count('1')}.min
}
0