結果

問題 No.1469 programing
ユーザー 萩3萩3
提出日時 2021-04-30 17:07:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 385 ms / 3,000 ms
コード長 115 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 293,536 KB
最終ジャッジ日時 2024-07-18 13:55:20
合計ジャッジ時間 2,106 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,712 KB
testcase_01 AC 30 ms
51,840 KB
testcase_02 AC 31 ms
52,096 KB
testcase_03 AC 33 ms
51,840 KB
testcase_04 AC 33 ms
51,712 KB
testcase_05 AC 35 ms
58,496 KB
testcase_06 AC 33 ms
57,600 KB
testcase_07 AC 34 ms
58,368 KB
testcase_08 AC 41 ms
70,880 KB
testcase_09 AC 46 ms
74,752 KB
testcase_10 AC 48 ms
73,728 KB
testcase_11 AC 56 ms
89,984 KB
testcase_12 AC 49 ms
80,640 KB
testcase_13 AC 31 ms
52,224 KB
testcase_14 AC 69 ms
98,176 KB
testcase_15 AC 59 ms
86,252 KB
testcase_16 AC 70 ms
90,832 KB
testcase_17 AC 385 ms
293,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=str(input())
word=[]
a=str(0)
for i in s:
  if a!=i:
    a=i
    word.append(i)

words=''.join(word)
print(words)
0