結果

問題 No.44 DPなすごろく
ユーザー yassu0320yassu0320
提出日時 2021-07-11 16:20:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 845 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 67,584 KB
最終ジャッジ日時 2024-07-02 03:06:34
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
67,200 KB
testcase_01 AC 72 ms
67,252 KB
testcase_02 AC 72 ms
66,816 KB
testcase_03 AC 71 ms
67,072 KB
testcase_04 AC 70 ms
66,816 KB
testcase_05 AC 70 ms
67,584 KB
testcase_06 AC 72 ms
67,044 KB
testcase_07 AC 66 ms
67,328 KB
testcase_08 AC 71 ms
66,688 KB
testcase_09 AC 69 ms
66,816 KB
testcase_10 AC 71 ms
66,816 KB
testcase_11 AC 67 ms
67,212 KB
testcase_12 AC 68 ms
66,688 KB
testcase_13 AC 68 ms
67,200 KB
testcase_14 AC 67 ms
66,816 KB
testcase_15 AC 68 ms
67,072 KB
testcase_16 AC 68 ms
66,816 KB
testcase_17 AC 67 ms
66,984 KB
testcase_18 AC 72 ms
66,816 KB
testcase_19 AC 69 ms
67,200 KB
testcase_20 AC 66 ms
66,688 KB
testcase_21 AC 66 ms
67,200 KB
testcase_22 AC 70 ms
66,816 KB
testcase_23 AC 70 ms
66,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

from sys import setrecursionlimit, stdin
from typing import Dict, Iterable, Set

INF: int = 2**62
MOD: int = 10**9 + 7

setrecursionlimit(10**6)


def inputs(type_=int):
    ins = input().split(' ')
    ins = [x for x in ins if x != '']

    if isinstance(type_, Iterable):
        return [t(x) for t, x in zip(type_, ins)]
    else:
        return list(map(type_, ins))


def input_(type_=int):
    a, = inputs(type_)
    return a


inputi = input_


def inputstr():
    return input_(str)


# b/aの切り上げ
def ceil(b, a):
    return (a + b - 1) // a


def answer(res) -> None:
    print(res)
    exit()


def compute():
    return

def fib(n):
    a, b = 0, 1
    for _ in range(n):
        a, b = b, a + b

    return a

def main():
    n = inputi()
    print(fib(n + 1))


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