結果

問題 No.1469 programing
ユーザー harurunharurun
提出日時 2021-04-03 01:28:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 555 bytes
コンパイル時間 1,276 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 265,344 KB
最終ジャッジ日時 2024-06-06 23:24:01
合計ジャッジ時間 13,358 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,512 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 40 ms
52,736 KB
testcase_05 AC 49 ms
62,080 KB
testcase_06 AC 45 ms
59,652 KB
testcase_07 AC 51 ms
62,848 KB
testcase_08 AC 305 ms
80,144 KB
testcase_09 AC 484 ms
86,016 KB
testcase_10 AC 421 ms
83,840 KB
testcase_11 TLE -
testcase_12 AC 1,788 ms
259,072 KB
testcase_13 AC 37 ms
51,712 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  S=input()
  assert(0<=len(S)<=5*(10**6))
  if len(S)!=0:
    #英小文字かどうか
    for i in S:
      assert(ord("a")<=ord(i)<=ord("z"))
    if len(S)>2:
      #3文字以上続いてないか(3文字続いているかの確認で3文字以上も確認できる)
      for i in range(len(S)-2):
        if S[i]==S[i+1] and S[i+1]==S[i+2]:
          raise Exception("3 or more continues.")
  if len(S)<2:
    print(S)
    return
  ans=S[0]
  for i in range(1,len(S)):
    if S[i-1]!=S[i]:
      ans+=S[i]
  print(ans)
  return

main()
0