結果

問題 No.1469 programing
ユーザー JUNYA-727JUNYA-727
提出日時 2021-04-12 00:52:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 461 ms / 3,000 ms
コード長 115 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 86,800 KB
実行使用メモリ 292,228 KB
最終ジャッジ日時 2023-09-10 06:57:16
合計ジャッジ時間 4,417 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,068 KB
testcase_01 AC 74 ms
71,072 KB
testcase_02 AC 77 ms
71,088 KB
testcase_03 AC 76 ms
70,876 KB
testcase_04 AC 76 ms
70,964 KB
testcase_05 AC 79 ms
75,392 KB
testcase_06 AC 78 ms
75,128 KB
testcase_07 AC 78 ms
75,336 KB
testcase_08 AC 86 ms
79,620 KB
testcase_09 AC 89 ms
82,236 KB
testcase_10 AC 88 ms
80,912 KB
testcase_11 AC 109 ms
96,372 KB
testcase_12 AC 93 ms
86,560 KB
testcase_13 AC 75 ms
70,856 KB
testcase_14 AC 116 ms
96,036 KB
testcase_15 AC 101 ms
85,484 KB
testcase_16 AC 113 ms
92,348 KB
testcase_17 AC 461 ms
292,228 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