結果

問題 No.1004 サイコロの実装 (2)
ユーザー ks2mks2m
提出日時 2020-03-06 22:43:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 2,942 ms
コンパイル使用メモリ 86,000 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-10-14 09:10:14
合計ジャッジ時間 9,484 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
54,124 KB
testcase_01 AC 152 ms
54,416 KB
testcase_02 AC 149 ms
54,088 KB
testcase_03 AC 149 ms
54,408 KB
testcase_04 AC 152 ms
54,112 KB
testcase_05 AC 151 ms
53,952 KB
testcase_06 AC 151 ms
54,320 KB
testcase_07 AC 149 ms
54,368 KB
testcase_08 AC 151 ms
54,212 KB
testcase_09 AC 150 ms
54,252 KB
testcase_10 AC 150 ms
54,120 KB
testcase_11 AC 151 ms
54,232 KB
testcase_12 AC 149 ms
54,356 KB
testcase_13 AC 152 ms
54,188 KB
testcase_14 AC 150 ms
54,264 KB
testcase_15 AC 152 ms
54,336 KB
testcase_16 AC 150 ms
54,136 KB
testcase_17 AC 150 ms
54,168 KB
testcase_18 AC 152 ms
53,964 KB
testcase_19 AC 150 ms
54,220 KB
testcase_20 AC 150 ms
54,464 KB
testcase_21 AC 151 ms
54,256 KB
testcase_22 AC 151 ms
54,008 KB
testcase_23 AC 149 ms
54,260 KB
testcase_24 AC 150 ms
54,288 KB
testcase_25 AC 150 ms
54,292 KB
testcase_26 AC 148 ms
54,428 KB
testcase_27 AC 149 ms
54,300 KB
testcase_28 AC 151 ms
54,164 KB
testcase_29 AC 151 ms
54,192 KB
testcase_30 AC 151 ms
53,964 KB
testcase_31 AC 149 ms
53,988 KB
testcase_32 AC 148 ms
54,360 KB
testcase_33 AC 151 ms
54,108 KB
testcase_34 AC 146 ms
54,140 KB
testcase_35 AC 150 ms
54,472 KB
testcase_36 AC 151 ms
53,912 KB
testcase_37 AC 148 ms
54,288 KB
testcase_38 AC 149 ms
54,248 KB
testcase_39 AC 153 ms
54,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

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

		long m = 1L << 32;
		for (int i = 1; i < x.length; i++) {
			x[i] = toBI(a).multiply(toBI(x[i - 1])).mod(toBI(m)).longValue();
			x[i] += b;
			x[i] %= m;
		}
		for (int i = 1; i < x.length; i++) {
			x[i]++;
		}

		if (x[1] % 2 == 1) {
			System.out.println(n / 2 + " 0");
		} else {
			System.out.println("0 " + n / 2);
		}
	}

	static BigInteger toBI(long x) {
		return BigInteger.valueOf(x);
	}
}
0