結果

問題 No.434 占い
ユーザー 37zigen37zigen
提出日時 2020-04-04 05:33:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 960 ms / 2,000 ms
コード長 1,399 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 68,080 KB
最終ジャッジ日時 2024-07-03 06:59:10
合計ジャッジ時間 11,533 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,280 KB
testcase_01 AC 117 ms
53,116 KB
testcase_02 AC 127 ms
54,112 KB
testcase_03 AC 131 ms
53,836 KB
testcase_04 AC 129 ms
53,972 KB
testcase_05 AC 128 ms
54,112 KB
testcase_06 AC 237 ms
55,032 KB
testcase_07 AC 153 ms
54,328 KB
testcase_08 AC 154 ms
53,796 KB
testcase_09 AC 169 ms
54,460 KB
testcase_10 AC 183 ms
54,392 KB
testcase_11 AC 268 ms
57,368 KB
testcase_12 AC 361 ms
58,680 KB
testcase_13 AC 152 ms
54,336 KB
testcase_14 AC 160 ms
54,340 KB
testcase_15 AC 241 ms
56,936 KB
testcase_16 AC 235 ms
57,184 KB
testcase_17 AC 242 ms
57,940 KB
testcase_18 AC 298 ms
57,508 KB
testcase_19 AC 390 ms
59,376 KB
testcase_20 AC 960 ms
68,080 KB
testcase_21 AC 250 ms
57,372 KB
testcase_22 AC 228 ms
56,976 KB
testcase_23 AC 124 ms
53,856 KB
testcase_24 AC 227 ms
57,324 KB
testcase_25 AC 230 ms
57,292 KB
testcase_26 AC 211 ms
57,356 KB
testcase_27 AC 291 ms
58,052 KB
testcase_28 AC 300 ms
57,732 KB
testcase_29 AC 429 ms
59,832 KB
testcase_30 AC 867 ms
68,004 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%9,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=(int)((long)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;
				if(i!=n-1) {
					while(numerator%3==0) {
						numerator/=3;++c3;
					}
					while(denominator%3==0) {
						denominator/=3;--c3;
					}
					binom=mul(binom,numerator,inv(denominator));
				}
			}
			System.out.println(zero?0:(ans==0?9:ans));
		}
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}

0