結果

問題 No.1258 コインゲーム
ユーザー 遭難者遭難者
提出日時 2020-10-19 09:36:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,207 ms / 2,000 ms
コード長 976 bytes
コンパイル時間 1,816 ms
コンパイル使用メモリ 77,716 KB
実行使用メモリ 57,888 KB
最終ジャッジ日時 2024-07-21 07:49:24
合計ジャッジ時間 45,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 540 ms
48,472 KB
testcase_01 AC 586 ms
51,384 KB
testcase_02 AC 351 ms
47,880 KB
testcase_03 AC 1,045 ms
55,604 KB
testcase_04 AC 1,119 ms
57,180 KB
testcase_05 AC 446 ms
48,352 KB
testcase_06 AC 901 ms
55,432 KB
testcase_07 AC 293 ms
47,616 KB
testcase_08 AC 271 ms
47,276 KB
testcase_09 AC 624 ms
53,668 KB
testcase_10 AC 1,043 ms
55,260 KB
testcase_11 AC 993 ms
55,416 KB
testcase_12 AC 889 ms
55,460 KB
testcase_13 AC 529 ms
48,588 KB
testcase_14 AC 275 ms
46,296 KB
testcase_15 AC 1,093 ms
56,352 KB
testcase_16 AC 485 ms
48,076 KB
testcase_17 AC 1,076 ms
55,356 KB
testcase_18 AC 595 ms
53,788 KB
testcase_19 AC 656 ms
53,316 KB
testcase_20 AC 842 ms
55,052 KB
testcase_21 AC 1,207 ms
56,980 KB
testcase_22 AC 929 ms
57,244 KB
testcase_23 AC 792 ms
53,884 KB
testcase_24 AC 429 ms
48,252 KB
testcase_25 AC 754 ms
53,928 KB
testcase_26 AC 690 ms
53,728 KB
testcase_27 AC 1,093 ms
55,280 KB
testcase_28 AC 477 ms
53,536 KB
testcase_29 AC 581 ms
50,232 KB
testcase_30 AC 1,080 ms
55,580 KB
testcase_31 AC 550 ms
53,260 KB
testcase_32 AC 351 ms
48,500 KB
testcase_33 AC 1,033 ms
55,680 KB
testcase_34 AC 1,062 ms
55,480 KB
testcase_35 AC 643 ms
53,712 KB
testcase_36 AC 1,111 ms
56,012 KB
testcase_37 AC 685 ms
53,664 KB
testcase_38 AC 1,045 ms
55,284 KB
testcase_39 AC 558 ms
52,904 KB
testcase_40 AC 1,046 ms
57,660 KB
testcase_41 AC 1,089 ms
54,964 KB
testcase_42 AC 1,018 ms
57,520 KB
testcase_43 AC 1,014 ms
57,732 KB
testcase_44 AC 1,117 ms
55,496 KB
testcase_45 AC 1,087 ms
55,584 KB
testcase_46 AC 1,014 ms
55,356 KB
testcase_47 AC 1,008 ms
57,860 KB
testcase_48 AC 1,158 ms
56,880 KB
testcase_49 AC 1,019 ms
57,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		int s = Integer.parseInt(sc.next());
		for(int q = 0 ; q < s ; q++){
			int n = Integer.parseInt(sc.next());
			int m = Integer.parseInt(sc.next());
			int x = Integer.parseInt(sc.next());
			long zz = 1;
			long zzz = 1 + m;
			long yyy = 1 - m;
			long yy = 1;
			while(n != 0){
				if(n % 2 != 0){
					zz *= zzz;
					yy *= yyy;
					zz %= (int)Math.pow(10 , 9) + 7;
					yy %= (int)Math.pow(10 , 9) + 7;
				}
				n /= 2;
				zzz *= zzz;
				yyy *= yyy;
				zzz %= (int)Math.pow(10 , 9) + 7;
				yyy %= (int)Math.pow(10 , 9) + 7;
			}
			if(x == 0) zz += yy;
			else zz -= yy;
			while(zz < 0) zz += (int)Math.pow(10 , 9) + 7;
			if(zz % 2 == 1) zz += (int)Math.pow(10 , 9) + 7;
			zz /= 2;
			zz %= (int)Math.pow(10 , 9) + 7;
			ou.println(zz);
		}
		ou.flush();
		sc.close();
	}
}
0