結果

問題 No.436 ccw
ユーザー marumaru
提出日時 2016-12-09 11:41:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,648 KB
最終ジャッジ日時 2024-11-28 16:17:04
合計ジャッジ時間 49,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 TLE -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 29 ms
15,872 KB
testcase_11 TLE -
testcase_12 WA -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
a = []
c = 0
d = 0

for value in range(0,2):
    a.append(s)

while ('ccw' in a[0]) == True or ('ccw' in a[1]) == True:
    if ('ccw' in a[1]) == True:
        a[0] = a[0].replace('c','',1)
        c = c + 1

    if ('ccw' in a[1]) == True:
        a[1] = a[1].replace('w','',1)
        d = d + 1

if c >= d:
    print(d)
else:
    print(c)
0