結果

問題 No.1469 programing
ユーザー 👑 rin204rin204
提出日時 2021-08-05 17:58:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 3,000 ms
コード長 123 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 87,072 KB
実行使用メモリ 89,248 KB
最終ジャッジ日時 2023-10-14 21:38:06
合計ジャッジ時間 3,208 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,144 KB
testcase_01 AC 69 ms
71,152 KB
testcase_02 AC 69 ms
71,148 KB
testcase_03 AC 70 ms
71,272 KB
testcase_04 AC 73 ms
70,956 KB
testcase_05 AC 79 ms
76,320 KB
testcase_06 AC 76 ms
75,520 KB
testcase_07 AC 80 ms
76,460 KB
testcase_08 AC 84 ms
77,216 KB
testcase_09 AC 87 ms
77,188 KB
testcase_10 AC 86 ms
77,292 KB
testcase_11 AC 88 ms
77,372 KB
testcase_12 AC 87 ms
77,360 KB
testcase_13 AC 71 ms
71,116 KB
testcase_14 AC 93 ms
77,832 KB
testcase_15 AC 92 ms
77,860 KB
testcase_16 AC 100 ms
77,836 KB
testcase_17 AC 283 ms
89,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
bef = ""
for s in S:
    if bef == s:
        bef = ""
    else:
        print(end = s)
        bef = s
print()
0