結果

問題 No.1469 programing
ユーザー NoaSaberNoaSaber
提出日時 2021-04-09 22:04:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 119 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 87,076 KB
実行使用メモリ 272,828 KB
最終ジャッジ日時 2023-09-07 11:22:17
合計ジャッジ時間 7,834 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,532 KB
testcase_01 AC 72 ms
70,892 KB
testcase_02 AC 74 ms
71,168 KB
testcase_03 AC 72 ms
71,324 KB
testcase_04 AC 75 ms
71,152 KB
testcase_05 AC 77 ms
75,548 KB
testcase_06 AC 75 ms
75,372 KB
testcase_07 AC 76 ms
75,688 KB
testcase_08 AC 427 ms
85,788 KB
testcase_09 AC 710 ms
99,084 KB
testcase_10 AC 572 ms
94,148 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
tmp=""
ans=""
for i in N:
    if tmp==i:
        continue
    else:
        tmp=i
        ans+=tmp
print(ans)
0