結果

問題 No.1004 サイコロの実装 (2)
ユーザー ks2m
提出日時 2020-03-06 22:40:42
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 76,860 KB
実行使用メモリ 56,152 KB
最終ジャッジ日時 2024-10-14 09:04:12
合計ジャッジ時間 8,962 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 36 WA * 2
権限があれば一括ダウンロードができます

ソースコード

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