結果

問題 No.906 Y字グラフ
ユーザー simamumusimamumu
提出日時 2019-10-11 22:27:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 391 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 71,384 KB
最終ジャッジ日時 2024-05-04 02:13:20
合計ジャッジ時間 3,316 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
70,560 KB
testcase_01 AC 59 ms
69,156 KB
testcase_02 AC 58 ms
71,164 KB
testcase_03 AC 65 ms
69,832 KB
testcase_04 AC 65 ms
69,376 KB
testcase_05 AC 63 ms
69,512 KB
testcase_06 AC 58 ms
69,664 KB
testcase_07 AC 60 ms
70,084 KB
testcase_08 AC 60 ms
69,624 KB
testcase_09 AC 60 ms
69,752 KB
testcase_10 AC 59 ms
71,124 KB
testcase_11 AC 59 ms
70,004 KB
testcase_12 AC 58 ms
69,620 KB
testcase_13 AC 59 ms
70,420 KB
testcase_14 AC 60 ms
71,224 KB
testcase_15 AC 59 ms
69,628 KB
testcase_16 AC 59 ms
69,596 KB
testcase_17 AC 60 ms
70,492 KB
testcase_18 AC 59 ms
69,408 KB
testcase_19 AC 58 ms
69,636 KB
testcase_20 AC 59 ms
70,476 KB
testcase_21 AC 61 ms
70,108 KB
testcase_22 AC 58 ms
69,568 KB
testcase_23 AC 59 ms
69,932 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,deque
import sys,heapq,bisect,math,itertools,string,queue,copy,time
sys.setrecursionlimit(10**8)
INF = float('inf')
mod = 10**9+7
eps = 10**-7
def inp(): return int(sys.stdin.readline())
def inpl(): return list(map(int, sys.stdin.readline().split()))
def inpl_str(): return list(sys.stdin.readline().split())

print(round(pow(int(input())-1,2) / 12)%mod)
0