結果

問題 No.1500 Super Knight
ユーザー ks2mks2m
提出日時 2021-05-07 22:06:27
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 638 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-09-15 10:01:57
合計ジャッジ時間 8,295 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,276 KB
testcase_01 AC 129 ms
41,228 KB
testcase_02 AC 132 ms
41,320 KB
testcase_03 RE -
testcase_04 AC 130 ms
40,828 KB
testcase_05 AC 126 ms
41,148 KB
testcase_06 RE -
testcase_07 AC 114 ms
39,988 KB
testcase_08 AC 119 ms
40,388 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 131 ms
41,424 KB
testcase_13 AC 117 ms
40,076 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 130 ms
41,124 KB
testcase_17 RE -
testcase_18 AC 129 ms
41,164 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 114 ms
40,040 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 116 ms
40,168 KB
testcase_27 RE -
testcase_28 AC 114 ms
40,012 KB
testcase_29 RE -
testcase_30 AC 113 ms
40,004 KB
testcase_31 AC 117 ms
40,240 KB
testcase_32 AC 128 ms
41,144 KB
testcase_33 AC 129 ms
41,256 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

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;
			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);
			if (n % 2 == 0) {
				r2 -= r1;
				throw new Exception();
			}
			r2 *= 4;
			r2 %= mod;

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