結果

問題 No.2140 Triangle
ユーザー terasaterasa
提出日時 2022-12-02 21:24:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 67,840 KB
最終ジャッジ日時 2024-10-09 22:29:00
合計ジャッジ時間 3,433 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List, Tuple, Callable, TypeVar
import sys
import itertools
import heapq
import bisect
import math
from collections import deque, defaultdict
from functools import lru_cache, cmp_to_key

input = sys.stdin.readline

if __file__ != 'prog.py':
    sys.setrecursionlimit(10 ** 6)


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input()[:-1]


A = int(input())
print(2 * A - 1)
0