結果
問題 | No.1765 While Shining |
ユーザー | Merry-Amor |
提出日時 | 2021-12-03 20:38:26 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 752 bytes |
コンパイル時間 | 45 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 46,240 KB |
最終ジャッジ日時 | 2024-07-06 04:09:37 |
合計ジャッジ時間 | 5,454 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
19,232 KB |
testcase_01 | AC | 87 ms
12,160 KB |
testcase_02 | AC | 86 ms
12,288 KB |
testcase_03 | AC | 87 ms
12,288 KB |
testcase_04 | AC | 109 ms
12,416 KB |
testcase_05 | AC | 161 ms
12,672 KB |
testcase_06 | AC | 109 ms
12,416 KB |
testcase_07 | AC | 110 ms
12,544 KB |
testcase_08 | AC | 311 ms
12,544 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
def reverseNumByArray stdAr returnAr = [] stdAr.each{|num| case num when '0' returnAr.push('1') when '1' returnAr.push('0') end } return returnAr end inputN = gets N = inputN.to_i inputI = gets I = inputI.split(' ') ans = 0 place = 0 for i in 0..(N-1) do place = i cloneI = I.clone while (cloneI[place] != "0") do if place == (N - 1) then break else place += 1 ans += 1 cloneI = reverseNumByArray(cloneI) end end end puts ans