結果

問題 No.933 おまわりさんこいつです
ユーザー Mishan5055Mishan5055
提出日時 2020-02-26 18:07:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 656 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 3,987 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 59,628 KB
最終ジャッジ日時 2024-10-13 15:27:00
合計ジャッジ時間 10,412 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,956 KB
testcase_01 AC 125 ms
54,084 KB
testcase_02 AC 119 ms
53,888 KB
testcase_03 AC 123 ms
53,664 KB
testcase_04 AC 123 ms
53,836 KB
testcase_05 AC 126 ms
54,060 KB
testcase_06 AC 127 ms
53,828 KB
testcase_07 AC 119 ms
52,624 KB
testcase_08 AC 122 ms
53,944 KB
testcase_09 AC 126 ms
54,020 KB
testcase_10 AC 132 ms
54,056 KB
testcase_11 AC 139 ms
53,832 KB
testcase_12 AC 153 ms
54,440 KB
testcase_13 AC 179 ms
56,228 KB
testcase_14 AC 195 ms
56,352 KB
testcase_15 AC 219 ms
58,024 KB
testcase_16 AC 321 ms
59,128 KB
testcase_17 AC 424 ms
59,332 KB
testcase_18 AC 127 ms
53,712 KB
testcase_19 AC 500 ms
59,628 KB
testcase_20 AC 366 ms
59,288 KB
testcase_21 AC 122 ms
53,844 KB
testcase_22 AC 116 ms
52,580 KB
testcase_23 AC 611 ms
59,532 KB
testcase_24 AC 656 ms
59,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

class Main{
	public static int transform(String txt) {
		int len=txt.length();
		int Ans=0;
		for(int i=0;i<len;i++) {
			Ans+=Character.getNumericValue(txt.charAt(i));
		}
		if(Ans<10) {
			return Ans;
		}else {
			String txt2=String.valueOf(Ans);
			return transform(txt2);
		}
	}
	public static void main(String[] args) {
		Scanner scan=new Scanner(System.in);
		int N=scan.nextInt();
		int ANS=1;
		for(int i=0;i<N;i++) {
			String Kstr=scan.next();
			int K=transform(Kstr);
			ANS*=K;
			String ANSstr=String.valueOf(ANS);
			ANS=transform(ANSstr);
		}
		
		System.out.println(ANS);
	}
}
0