結果

問題 No.1500 Super Knight
ユーザー ks2mks2m
提出日時 2021-05-07 22:09:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 897 bytes
コンパイル時間 2,456 ms
コンパイル使用メモリ 77,464 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-09-15 10:05:14
合計ジャッジ時間 8,254 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,100 KB
testcase_01 AC 133 ms
53,984 KB
testcase_02 AC 136 ms
53,872 KB
testcase_03 AC 133 ms
53,988 KB
testcase_04 AC 133 ms
54,100 KB
testcase_05 AC 132 ms
53,896 KB
testcase_06 AC 133 ms
54,072 KB
testcase_07 AC 132 ms
53,976 KB
testcase_08 AC 137 ms
54,020 KB
testcase_09 AC 132 ms
53,880 KB
testcase_10 AC 133 ms
54,096 KB
testcase_11 AC 133 ms
53,996 KB
testcase_12 AC 134 ms
53,964 KB
testcase_13 AC 132 ms
54,204 KB
testcase_14 AC 134 ms
53,876 KB
testcase_15 AC 134 ms
54,076 KB
testcase_16 AC 133 ms
53,728 KB
testcase_17 AC 133 ms
54,048 KB
testcase_18 AC 132 ms
54,132 KB
testcase_19 AC 133 ms
54,208 KB
testcase_20 AC 131 ms
53,832 KB
testcase_21 AC 133 ms
54,056 KB
testcase_22 AC 132 ms
54,180 KB
testcase_23 AC 132 ms
53,896 KB
testcase_24 AC 131 ms
53,868 KB
testcase_25 AC 131 ms
53,984 KB
testcase_26 AC 131 ms
54,124 KB
testcase_27 AC 131 ms
53,972 KB
testcase_28 AC 130 ms
53,956 KB
testcase_29 AC 131 ms
54,088 KB
testcase_30 AC 134 ms
54,056 KB
testcase_31 AC 133 ms
53,908 KB
testcase_32 AC 131 ms
53,988 KB
testcase_33 AC 132 ms
54,072 KB
testcase_34 AC 134 ms
54,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		int[] a = {1, 12, 65};
		if (n < 3) {
			System.out.println(a[n]);
		} else {
			int mod = 1000000007;
			long x = 6L * n + 1;
			if (n % 2 == 1) {
				long x1 = x / 2;
				long x2 = x1 + 1;
				x1 %= mod;
				x2 %= mod;
				long v1 = x1 * x2 * 2 % mod;

				long r1 = n / 2;
				long r2 = r1 * (r1 + 1);
				r2 *= 4;
				r2 %= mod;

				long ans = v1 - r2 + mod;
				ans %= mod;
				System.out.println(ans);
			} else {
				long x1 = x / 2;
				long x2 = x1 + 1;
				x1 %= mod;
				x2 %= mod;
				long v1 = x1 * x1 % mod;
				long v2 = x2 * x2 % mod;

				long r1 = n / 2;
				long r2 = r1 * r1 * 4;
				r2 %= mod;

				long ans = v1 + v2 - r2 + mod;
				ans %= mod;
				System.out.println(ans);
			}
		}
	}
}
0