結果
| 問題 | No.1469 programing |
| コンテスト | |
| ユーザー |
AAAR Salmon
|
| 提出日時 | 2021-05-15 13:29:46 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 302 bytes |
| 記録 | |
| コンパイル時間 | 233 ms |
| コンパイル使用メモリ | 85,252 KB |
| 実行使用メモリ | 334,860 KB |
| 最終ジャッジ日時 | 2026-04-19 04:52:14 |
| 合計ジャッジ時間 | 17,113 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 TLE * 2 |
ソースコード
import sys import math from math import sin, cos, tan from functools import reduce from collections import deque import heapq sys.setrecursionlimit(1000000) intm1 = lambda x:int(x)-1 S = input() N = len(S) T = S[0] i = 1 while i < N: if S[i] == T[-1]: i += 1 continue T += S[i] i += 1 print(T)
AAAR Salmon