結果

問題 No.1004 サイコロの実装 (2)
ユーザー 37zigen37zigen
提出日時 2020-03-06 18:51:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 632 bytes
コンパイル時間 2,217 ms
コンパイル使用メモリ 83,756 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-10-14 03:03:52
合計ジャッジ時間 8,946 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
40,572 KB
testcase_01 AC 140 ms
41,208 KB
testcase_02 AC 133 ms
41,428 KB
testcase_03 AC 122 ms
40,268 KB
testcase_04 AC 127 ms
40,608 KB
testcase_05 AC 137 ms
41,288 KB
testcase_06 AC 125 ms
40,212 KB
testcase_07 AC 141 ms
41,428 KB
testcase_08 AC 138 ms
41,352 KB
testcase_09 AC 136 ms
41,636 KB
testcase_10 AC 124 ms
40,444 KB
testcase_11 AC 135 ms
41,432 KB
testcase_12 AC 137 ms
41,324 KB
testcase_13 AC 136 ms
41,688 KB
testcase_14 AC 140 ms
41,372 KB
testcase_15 AC 148 ms
40,700 KB
testcase_16 AC 137 ms
41,668 KB
testcase_17 AC 136 ms
41,352 KB
testcase_18 AC 138 ms
41,408 KB
testcase_19 AC 137 ms
41,432 KB
testcase_20 AC 139 ms
41,328 KB
testcase_21 AC 137 ms
41,684 KB
testcase_22 AC 133 ms
41,404 KB
testcase_23 AC 138 ms
41,540 KB
testcase_24 AC 137 ms
41,452 KB
testcase_25 AC 138 ms
41,540 KB
testcase_26 AC 136 ms
41,508 KB
testcase_27 AC 134 ms
41,688 KB
testcase_28 AC 120 ms
40,600 KB
testcase_29 AC 131 ms
40,044 KB
testcase_30 AC 138 ms
41,404 KB
testcase_31 AC 140 ms
41,380 KB
testcase_32 AC 140 ms
41,460 KB
testcase_33 AC 140 ms
41,508 KB
testcase_34 AC 128 ms
40,444 KB
testcase_35 AC 127 ms
40,444 KB
testcase_36 AC 137 ms
41,192 KB
testcase_37 AC 135 ms
40,396 KB
testcase_38 AC 141 ms
41,456 KB
testcase_39 AC 139 ms
41,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 制約の確認

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		long a=sc.nextLong();
		long b=sc.nextLong();
		long x0=sc.nextLong();
		long N=sc.nextLong();
		if(!(0<=a&&0<=b&&0<=x0&&0<=N&&a<(1L<<32)&&b<(1L<<32)&&x0<(1L<<32)&&N<(1L<<32)))throw new AssertionError();
		if(!(a%4==1&&b%2==1))throw new AssertionError();
		long x1=(a*x0+b)%6+1;
		System.out.println(x1%2==0?(0+" "+N/2):(N/2+" "+0));
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}
0