結果
| 問題 | No.2140 Triangle |
| コンテスト | |
| ユーザー |
terasa
|
| 提出日時 | 2022-12-02 21:24:54 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 51 ms / 2,000 ms |
| + 126µs | |
| コード長 | 456 bytes |
| 記録 | |
| コンパイル時間 | 75 ms |
| コンパイル使用メモリ | 80,896 KB |
| 実行使用メモリ | 71,808 KB |
| 最終ジャッジ日時 | 2026-09-12 20:59:58 |
| 合計ジャッジ時間 | 3,223 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 28 |
ソースコード
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)
terasa