結果

問題 No.2314 Backflip
ユーザー cleanttedcleantted
提出日時 2023-02-19 00:04:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 1,091 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 87,688 KB
実行使用メモリ 97,852 KB
最終ジャッジ日時 2023-09-27 12:11:53
合計ジャッジ時間 5,226 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
97,748 KB
testcase_01 AC 255 ms
97,680 KB
testcase_02 AC 261 ms
97,552 KB
testcase_03 AC 255 ms
97,488 KB
testcase_04 AC 267 ms
97,656 KB
testcase_05 AC 256 ms
97,804 KB
testcase_06 AC 255 ms
97,568 KB
testcase_07 AC 256 ms
97,492 KB
testcase_08 AC 248 ms
97,852 KB
testcase_09 AC 249 ms
97,628 KB
testcase_10 AC 253 ms
97,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
from math import gcd, log10, pi, sqrt, ceil
from bisect import bisect, bisect_left, bisect_right, insort
from typing import Iterable, TypeVar, Union, Tuple, Iterator, List
# import bisect
import copy
import heapq
import itertools
import math
import random
from fractions import Fraction
from functools import lru_cache, partial, cmp_to_key
import operator
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
# import string
# import networkx as nx
input = sys.stdin.readline
sys.setrecursionlimit(10000000)
# mod = 10 ** 9 + 7
mod = 998244353
# mod = 1 << 128
# mod = 10 ** 30 + 1
INF = 1 << 61
DIFF = 10 ** -9
DX = [1, 0, -1, 0, 1, 1, -1, -1]
DY = [0, 1, 0, -1, 1, -1, 1, -1]

def read_values(): return map(int, input().split())
def read_index(): return map(lambda x: int(x) - 1, input().split())
def read_list(): return list(read_values())
def read_lists(N): return [read_list() for _ in range(N)]


def main():
    S = input().strip()
    print(S[:-1] + ("0" if S[-1] == "1" else "1"))


if __name__ == "__main__":
    main()
0