結果

問題 No.1469 programing
ユーザー TomoyarnTomoyarn
提出日時 2022-01-14 06:30:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 3,000 ms
コード長 187 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 92,028 KB
最終ジャッジ日時 2024-11-18 14:43:40
合計ジャッジ時間 2,262 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,124 KB
testcase_01 AC 37 ms
53,008 KB
testcase_02 AC 37 ms
52,132 KB
testcase_03 AC 39 ms
52,892 KB
testcase_04 AC 42 ms
54,388 KB
testcase_05 AC 51 ms
63,072 KB
testcase_06 AC 45 ms
60,252 KB
testcase_07 AC 50 ms
63,392 KB
testcase_08 AC 63 ms
76,920 KB
testcase_09 AC 64 ms
77,360 KB
testcase_10 AC 61 ms
76,952 KB
testcase_11 AC 67 ms
78,380 KB
testcase_12 AC 65 ms
77,556 KB
testcase_13 AC 35 ms
52,996 KB
testcase_14 AC 72 ms
78,912 KB
testcase_15 AC 65 ms
77,852 KB
testcase_16 AC 76 ms
78,784 KB
testcase_17 AC 227 ms
92,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input() + "#"
l = len(S)

ans = ""
i = 0
while i < l - 1:
    #ans += S[i]
    print(S[i], end = "")
    if S[i] == S[i + 1]:
        i += 2
    else:
        i += 1
    

#print(ans)
0