結果

問題 No.906 Y字グラフ
ユーザー kohei2019kohei2019
提出日時 2022-08-02 00:55:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 53,628 KB
最終ジャッジ日時 2024-07-22 16:25:09
合計ジャッジ時間 2,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,876 KB
testcase_01 AC 32 ms
52,492 KB
testcase_02 AC 32 ms
52,628 KB
testcase_03 AC 31 ms
53,020 KB
testcase_04 AC 33 ms
52,432 KB
testcase_05 AC 34 ms
52,700 KB
testcase_06 AC 32 ms
53,116 KB
testcase_07 AC 32 ms
52,724 KB
testcase_08 AC 32 ms
52,388 KB
testcase_09 AC 33 ms
51,828 KB
testcase_10 AC 33 ms
52,204 KB
testcase_11 AC 34 ms
51,772 KB
testcase_12 AC 32 ms
52,488 KB
testcase_13 AC 32 ms
52,284 KB
testcase_14 AC 31 ms
52,192 KB
testcase_15 AC 34 ms
52,896 KB
testcase_16 AC 33 ms
52,976 KB
testcase_17 AC 32 ms
52,384 KB
testcase_18 AC 32 ms
52,772 KB
testcase_19 AC 32 ms
51,892 KB
testcase_20 AC 33 ms
51,936 KB
testcase_21 AC 32 ms
51,692 KB
testcase_22 AC 31 ms
51,900 KB
testcase_23 AC 32 ms
52,612 KB
testcase_24 AC 31 ms
52,912 KB
testcase_25 AC 32 ms
52,232 KB
testcase_26 AC 31 ms
53,628 KB
testcase_27 AC 33 ms
53,148 KB
testcase_28 AC 32 ms
52,332 KB
testcase_29 AC 34 ms
51,964 KB
testcase_30 AC 35 ms
52,296 KB
testcase_31 AC 35 ms
52,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
mod = 10**9+7
a3 = 1 if (N-1) % 3 == 0 else 0
a2 = -(-(N-2)//2)-a3
a1 = ((N-2)*(N-3)//2 - a3 - 3*a2)//6
ans = (a1+a2+a3) % mod
print(ans)
0