結果

問題 No.864 四方演算
ユーザー ks2mks2m
提出日時 2019-08-16 21:45:08
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 568 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 56,192 KB
最終ジャッジ日時 2024-09-24 18:03:50
合計ジャッジ時間 7,285 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 143 ms
54,088 KB
testcase_03 AC 143 ms
54,188 KB
testcase_04 AC 148 ms
56,192 KB
testcase_05 AC 141 ms
54,512 KB
testcase_06 AC 145 ms
54,124 KB
testcase_07 AC 146 ms
53,996 KB
testcase_08 AC 144 ms
54,212 KB
testcase_09 AC 126 ms
53,112 KB
testcase_10 AC 138 ms
54,100 KB
testcase_11 AC 138 ms
54,160 KB
testcase_12 AC 145 ms
54,204 KB
testcase_13 AC 140 ms
54,432 KB
testcase_14 AC 139 ms
53,832 KB
testcase_15 AC 149 ms
54,000 KB
testcase_16 AC 146 ms
54,192 KB
testcase_17 AC 147 ms
54,368 KB
testcase_18 AC 144 ms
54,120 KB
testcase_19 AC 142 ms
53,852 KB
testcase_20 AC 147 ms
54,156 KB
testcase_21 AC 145 ms
53,812 KB
testcase_22 AC 143 ms
54,232 KB
testcase_23 AC 135 ms
54,052 KB
testcase_24 AC 144 ms
53,960 KB
testcase_25 AC 139 ms
54,196 KB
testcase_26 AC 144 ms
54,028 KB
testcase_27 AC 132 ms
53,868 KB
testcase_28 AC 130 ms
53,956 KB
testcase_29 AC 131 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		long ans = 0;
		long end = (long) Math.sqrt(k);
		for (int i = 2; i <= end; i++) {
			if (k % i == 0) {
				long m1 = Math.min(i - 1, n);
				long v1 = Math.max(m1 - (i - 1 - m1), 0);

				long i2 = k / i;
				long m2 = Math.min(i2 - 1, n);
				long v2 = Math.max(m2 - (i2 - 1 - m2), 0);

				ans += v1 * v2;
			}
		}
		System.out.println(ans * 2);
	}
}
0