結果

問題 No.434 占い
ユーザー 37zigen37zigen
提出日時 2020-04-04 05:18:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,301 bytes
コンパイル時間 2,722 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 68,236 KB
最終ジャッジ日時 2024-07-03 06:58:34
合計ジャッジ時間 12,562 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,408 KB
testcase_01 AC 137 ms
53,740 KB
testcase_02 AC 137 ms
54,092 KB
testcase_03 AC 138 ms
54,228 KB
testcase_04 AC 137 ms
53,996 KB
testcase_05 AC 137 ms
54,256 KB
testcase_06 AC 253 ms
54,940 KB
testcase_07 AC 151 ms
53,828 KB
testcase_08 AC 161 ms
54,344 KB
testcase_09 AC 173 ms
54,544 KB
testcase_10 AC 192 ms
54,116 KB
testcase_11 AC 273 ms
57,004 KB
testcase_12 AC 396 ms
59,404 KB
testcase_13 AC 164 ms
54,468 KB
testcase_14 AC 175 ms
54,084 KB
testcase_15 WA -
testcase_16 AC 250 ms
57,428 KB
testcase_17 AC 261 ms
57,660 KB
testcase_18 AC 318 ms
57,956 KB
testcase_19 AC 425 ms
59,272 KB
testcase_20 AC 1,053 ms
68,236 KB
testcase_21 WA -
testcase_22 AC 254 ms
57,220 KB
testcase_23 AC 142 ms
54,400 KB
testcase_24 AC 259 ms
57,104 KB
testcase_25 AC 273 ms
57,072 KB
testcase_26 AC 211 ms
57,296 KB
testcase_27 AC 321 ms
58,144 KB
testcase_28 AC 324 ms
58,284 KB
testcase_29 AC 479 ms
59,496 KB
testcase_30 AC 900 ms
68,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

	public static void main(String[] args) {
		new Main().run();
	}
	
	int[] toint(char[] cs) {
		int[] ret=new int[cs.length];
		for(int i=0;i<ret.length;++i)ret[i]=(int)(cs[i]-'0');
		return ret;
	}
	
	int pow(int a,int n) {
		int ret=1;
		for(;n>0;n>>=1,a=a*a%9)if(n%2==1)ret=ret*a%9;
		return ret;
	}
	
	int inv(int a) {
		if(a%3==0)throw new AssertionError();
		return pow(a,5);
	}
	
	int count3(int a) {
		int ret=0;
		while(a%3==0) {
			a/=3;
			++ret;
		}
		return ret;
	}
	
	int mul(int...a) {
		int r=1;
		for(int v:a)r=r*v%9;
		return r;
	}

	void run() {
		Scanner sc=new Scanner(System.in);
		int T=sc.nextInt();
		while(T-->0) {
			int[] a=toint(sc.next().toCharArray());
			int n=a.length;
			int binom=1;
			int c3=0;
			int ans=0;
			boolean zero=Arrays.stream(a).filter(v->v==0).count()==n;
			for(int i=0;i<n;++i) {
				if(c3<0)throw new AssertionError();
				ans+=mul(pow(3,c3),binom,a[i]);
				ans%=9;
				int numerator=n-1-i;
				int denominator=i+1;
				while(numerator>0&&numerator%3==0) {
					numerator/=3;++c3;
				}
				while(denominator>0&&denominator%3==0) {
					denominator/=3;--c3;
				}
				binom=mul(binom,numerator,inv(denominator));
			}
			System.out.println(zero?0:(ans==0?9:ans));
		}
	}
}

0