結果
問題 | No.291 黒い文字列 |
ユーザー | steek79 |
提出日時 | 2015-10-16 23:43:35 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 823 bytes |
コンパイル時間 | 728 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2024-07-21 20:45:37 |
合計ジャッジ時間 | 1,568 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
S = raw_input() KUROI = ["K", "U", "R", "O", "I", "?"] string = "" kurolist = [0]*5 ans = 0 for s in S: if s in KUROI: string += s print string for s in string: if s == "K": kurolist[0] += 1 elif s == "U": if kurolist[0] > 0: kurolist[1] += 1 elif s == "R": if kurolist[0] > 0 and kurolist[1]> 0: kurolist[2] += 1 elif s == "O": if kurolist[0] > 0 and kurolist[1] > 0 and kurolist[2] > 0: kurolist[3] += 1 elif s == "I": if kurolist[0] > 0 and kurolist[1] > 0 and kurolist[2] > 0 and kurolist[3] > 0: kurolist[4] += 1 elif s == "?": kurolist[kurolist.index(min(kurolist))] += 1 if min(kurolist) > 0: ans += 1 kurolist = [x-1 for x in kurolist] print ans