結果

問題 No.3264 岩井数
ユーザー しもりん
提出日時 2025-09-06 14:53:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 946 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 71,720 KB
最終ジャッジ日時 2025-09-06 14:53:50
合計ジャッジ時間 5,573 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 22 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter, deque, defaultdict
from heapq import heapify, heappop, heappush, nlargest, nsmallest
from bisect import bisect_left, bisect, bisect_right
from string import ascii_lowercase, ascii_uppercase, digits
from copy import deepcopy
from time import perf_counter
import sys
import os
from typing import Any, List, Callable


IS_LOCAL = os.environ.get("LOCAL") == "true"


def debug(*args, sep=" ", end="\n", flush=False) -> None:
    if IS_LOCAL:
        print(*args, sep=sep, end=end, file=sys.stderr, flush=flush)


def yn(flg: bool) -> bool:
    print('Yes' if flg else 'No')
    return flg


def gcd(a, b):
    a = abs(a); b = abs(b)
    if a < b: a, b = b, a
    while b > 0:
        a, b = b, a % b
    return a


def lcm(a, b):
    return a * b // gcd(a, b)


def main():
    readline = sys.stdin.readline
    inf = 1e18
    MOD = 998244353

    N = input()
    print(N + N)


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