結果

問題 No.1004 サイコロの実装 (2)
ユーザー ks2mks2m
提出日時 2020-03-06 22:40:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 76,860 KB
実行使用メモリ 56,152 KB
最終ジャッジ日時 2024-10-14 09:04:12
合計ジャッジ時間 8,962 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
53,724 KB
testcase_01 AC 139 ms
54,276 KB
testcase_02 AC 136 ms
53,984 KB
testcase_03 AC 126 ms
53,132 KB
testcase_04 AC 137 ms
53,920 KB
testcase_05 AC 144 ms
54,060 KB
testcase_06 AC 127 ms
52,748 KB
testcase_07 AC 126 ms
53,184 KB
testcase_08 AC 137 ms
54,052 KB
testcase_09 AC 140 ms
53,840 KB
testcase_10 AC 135 ms
53,928 KB
testcase_11 WA -
testcase_12 AC 146 ms
54,116 KB
testcase_13 AC 140 ms
53,852 KB
testcase_14 AC 132 ms
53,180 KB
testcase_15 AC 137 ms
54,164 KB
testcase_16 AC 137 ms
53,916 KB
testcase_17 AC 141 ms
53,952 KB
testcase_18 AC 139 ms
54,300 KB
testcase_19 AC 125 ms
53,160 KB
testcase_20 AC 140 ms
53,904 KB
testcase_21 AC 124 ms
52,676 KB
testcase_22 AC 138 ms
53,696 KB
testcase_23 AC 136 ms
53,820 KB
testcase_24 AC 142 ms
54,160 KB
testcase_25 AC 141 ms
54,128 KB
testcase_26 AC 140 ms
53,984 KB
testcase_27 AC 138 ms
54,196 KB
testcase_28 AC 141 ms
54,128 KB
testcase_29 AC 138 ms
54,136 KB
testcase_30 AC 138 ms
54,100 KB
testcase_31 AC 142 ms
53,908 KB
testcase_32 AC 141 ms
54,096 KB
testcase_33 AC 134 ms
53,992 KB
testcase_34 WA -
testcase_35 AC 138 ms
53,840 KB
testcase_36 AC 138 ms
54,140 KB
testcase_37 AC 138 ms
53,940 KB
testcase_38 AC 144 ms
54,052 KB
testcase_39 AC 137 ms
53,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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] = a * x[i - 1] % m + 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);
		}
	}
}
0