結果

問題 No.1500 Super Knight
ユーザー kimiyuki
提出日時 2021-05-07 22:04:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-15 09:59:11
合計ジャッジ時間 2,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

MOD = 1000000007

def solve(n: int) -> int:
    if n == 0:
        return 1
    elif n == 1:
        return 12
    elif n == 2:
        return 65
    else:
        return ((6 * n + 1) ** 2 // 2 + 1 - n ** 2) % MOD


# generated by oj-template v4.7.2 (https://github.com/online-judge-tools/template-generator)
def main():
    N = int(input())
    a = solve(N)
    print(a)


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