結果
| 問題 |
No.1469 programing
|
| コンテスト | |
| ユーザー |
AAAR Salmon
|
| 提出日時 | 2021-05-15 13:29:46 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 302 bytes |
| コンパイル時間 | 247 ms |
| コンパイル使用メモリ | 82,008 KB |
| 実行使用メモリ | 277,632 KB |
| 最終ジャッジ日時 | 2024-10-03 01:13:47 |
| 合計ジャッジ時間 | 7,376 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 TLE * 2 -- * 3 |
ソースコード
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