結果

問題 No.1671 Permutation Tour
ユーザー rlangevinrlangevin
提出日時 2022-12-31 20:21:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 91 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 87,240 KB
実行使用メモリ 71,612 KB
最終ジャッジ日時 2023-08-17 19:59:49
合計ジャッジ時間 3,132 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,288 KB
testcase_01 AC 76 ms
71,576 KB
testcase_02 AC 80 ms
71,448 KB
testcase_03 AC 74 ms
71,192 KB
testcase_04 AC 75 ms
71,316 KB
testcase_05 AC 76 ms
71,452 KB
testcase_06 AC 74 ms
71,356 KB
testcase_07 AC 75 ms
71,360 KB
testcase_08 AC 76 ms
71,568 KB
testcase_09 AC 74 ms
71,612 KB
testcase_10 AC 74 ms
71,360 KB
testcase_11 AC 76 ms
71,312 KB
testcase_12 AC 75 ms
71,428 KB
testcase_13 AC 76 ms
71,148 KB
testcase_14 AC 76 ms
71,388 KB
testcase_15 AC 74 ms
71,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
mod = 10 ** 9 + 7
inv = pow(3, mod - 2, mod)
print(N * (N + 1) * inv %mod)
0