結果

問題 No.906 Y字グラフ
ユーザー ks2mks2m
提出日時 2019-10-11 22:59:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 885 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 50,512 KB
最終ジャッジ日時 2024-11-25 09:04:23
合計ジャッジ時間 4,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,304 KB
testcase_01 AC 48 ms
50,200 KB
testcase_02 AC 49 ms
50,140 KB
testcase_03 AC 50 ms
49,960 KB
testcase_04 AC 48 ms
50,428 KB
testcase_05 AC 50 ms
50,196 KB
testcase_06 AC 50 ms
50,308 KB
testcase_07 AC 50 ms
50,116 KB
testcase_08 AC 50 ms
50,292 KB
testcase_09 AC 49 ms
50,512 KB
testcase_10 AC 51 ms
50,344 KB
testcase_11 AC 57 ms
50,360 KB
testcase_12 AC 49 ms
49,952 KB
testcase_13 AC 49 ms
50,320 KB
testcase_14 AC 49 ms
50,272 KB
testcase_15 AC 51 ms
50,112 KB
testcase_16 AC 51 ms
50,364 KB
testcase_17 AC 51 ms
50,404 KB
testcase_18 AC 52 ms
50,144 KB
testcase_19 AC 49 ms
50,140 KB
testcase_20 AC 50 ms
50,268 KB
testcase_21 AC 51 ms
50,324 KB
testcase_22 AC 52 ms
50,320 KB
testcase_23 AC 50 ms
50,248 KB
testcase_24 AC 48 ms
50,240 KB
testcase_25 AC 50 ms
50,080 KB
testcase_26 AC 51 ms
49,920 KB
testcase_27 AC 50 ms
49,856 KB
testcase_28 AC 51 ms
50,136 KB
testcase_29 AC 52 ms
50,328 KB
testcase_30 AC 51 ms
49,984 KB
testcase_31 AC 52 ms
50,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.math.BigInteger;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		long n = Long.parseLong(br.readLine()) - 1;
		br.close();

		BigInteger bi1 = BigInteger.valueOf(n - 1);
		BigInteger bi2 = BigInteger.valueOf(n - 2);
		BigInteger bi3 = BigInteger.valueOf(2);
		BigInteger bi = bi1.multiply(bi2).divide(bi3);

		long ans = (n - 1) / 2;
		if (n % 3 == 0) {
			ans--;
		}
		BigInteger bi4 = BigInteger.valueOf(ans * 3);
		bi = bi.subtract(bi4);
		if (n % 3 == 0) {
			ans++;
			bi = bi.subtract(BigInteger.ONE);
		}
		ans %= 1000000007;
		bi = bi.divide(BigInteger.valueOf(6));
		bi = bi.mod(BigInteger.valueOf(1000000007));
		ans += bi.intValue();
		ans %= 1000000007;
		System.out.println(ans);
	}
}
0