結果
問題 | No.279 木の数え上げ |
ユーザー | yoza |
提出日時 | 2016-12-12 21:11:11 |
言語 | Vim script (v9.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 724 bytes |
コンパイル時間 | 366 ms |
コンパイル使用メモリ | 6,944 KB |
実行使用メモリ | 14,016 KB |
最終ジャッジ日時 | 2024-05-07 04:43:02 |
合計ジャッジ時間 | 4,673 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
11,520 KB |
testcase_01 | AC | 15 ms
11,264 KB |
testcase_02 | AC | 21 ms
11,648 KB |
testcase_03 | AC | 16 ms
11,648 KB |
testcase_04 | AC | 12 ms
11,264 KB |
testcase_05 | AC | 20 ms
11,392 KB |
testcase_06 | AC | 13 ms
11,648 KB |
testcase_07 | AC | 14 ms
11,392 KB |
testcase_08 | AC | 24 ms
11,648 KB |
testcase_09 | AC | 11 ms
11,392 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
function! s:output() let this = {'lines': []} function! this.append(line) abort call add(self.lines, a:line) endfunction function! this.build() abort return join(self.lines, "\n") endfunction return this endfunction function! s:main(input) abort let o = s:output() let [c_t, c_r, c_e] = [0, 0, 0] let l = len(a:input[0]) let i = 0 while i < l let c = a:input[0][i] if c ==# 't' let c_t += 1 elseif c ==# 'r' let c_r += 1 elseif c ==# 'e' let c_e += 1 endif let i += 1 endwhile let c_e = c_e / 2 let r = min([c_t, c_r, c_e]) call o.append(r) return o.build() endfunction let s:input = getline(1, '$') enew put =s:main(s:input) 2,$print