結果

問題 No.1671 Permutation Tour
ユーザー ygd.ygd.
提出日時 2021-09-05 19:36:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 53,788 KB
最終ジャッジ日時 2024-06-02 02:38:22
合計ジャッジ時間 1,515 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,204 KB
testcase_01 AC 32 ms
53,788 KB
testcase_02 AC 32 ms
53,100 KB
testcase_03 AC 33 ms
52,992 KB
testcase_04 AC 34 ms
52,520 KB
testcase_05 AC 32 ms
52,152 KB
testcase_06 AC 32 ms
52,248 KB
testcase_07 AC 32 ms
51,800 KB
testcase_08 AC 31 ms
51,948 KB
testcase_09 AC 33 ms
52,272 KB
testcase_10 AC 31 ms
52,952 KB
testcase_11 AC 32 ms
52,412 KB
testcase_12 AC 31 ms
51,944 KB
testcase_13 AC 30 ms
52,732 KB
testcase_14 AC 31 ms
53,380 KB
testcase_15 AC 31 ms
52,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def main():
    n = int(input()); mod = pow(10,9) + 7
    inv3 = pow(3,mod-2,mod)
    ans = n*(n+1)*inv3%mod
    print(ans)

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