結果

問題 No.1469 programing
ユーザー mesame3993mesame3993
提出日時 2021-11-15 00:52:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 3,000 ms
コード長 398 bytes
コンパイル時間 748 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 312,748 KB
最終ジャッジ日時 2024-05-07 17:31:35
合計ジャッジ時間 3,188 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 46 ms
58,752 KB
testcase_06 AC 40 ms
57,600 KB
testcase_07 AC 42 ms
58,496 KB
testcase_08 AC 52 ms
70,016 KB
testcase_09 AC 57 ms
74,624 KB
testcase_10 AC 56 ms
72,576 KB
testcase_11 AC 82 ms
97,664 KB
testcase_12 AC 62 ms
80,640 KB
testcase_13 AC 36 ms
51,584 KB
testcase_14 AC 87 ms
97,408 KB
testcase_15 AC 74 ms
88,832 KB
testcase_16 AC 83 ms
90,540 KB
testcase_17 AC 473 ms
312,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  from sys import stdin
  input=stdin.readline
  s = input()[:-1]
  n = len(s)
  ans = []
  flag = False
  for i in range(n-1):
    if flag:
      flag = False
      continue
    if s[i] == s[i+1]:
      ans.append(s[i])
      flag = True
    else:
      ans.append(s[i])
  if n == 1:
    ans.append(s)
  else:
    if s[-1] != s[-2]:
      ans.append(s[-1])
  print(''.join(ans))
main()
0