結果

問題 No.432 占い(Easy)
ユーザー YamaKasaYamaKasa
提出日時 2018-05-24 00:00:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 919 bytes
コンパイル時間 2,474 ms
コンパイル使用メモリ 77,628 KB
実行使用メモリ 50,796 KB
最終ジャッジ日時 2024-06-28 16:35:08
合計ジャッジ時間 8,740 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,320 KB
testcase_01 AC 127 ms
41,260 KB
testcase_02 AC 114 ms
40,216 KB
testcase_03 AC 133 ms
41,400 KB
testcase_04 AC 137 ms
41,380 KB
testcase_05 AC 130 ms
41,196 KB
testcase_06 AC 152 ms
41,420 KB
testcase_07 AC 148 ms
42,020 KB
testcase_08 AC 132 ms
41,300 KB
testcase_09 AC 204 ms
42,764 KB
testcase_10 AC 169 ms
42,228 KB
testcase_11 AC 192 ms
45,260 KB
testcase_12 AC 297 ms
50,692 KB
testcase_13 AC 295 ms
50,796 KB
testcase_14 AC 192 ms
45,692 KB
testcase_15 AC 131 ms
41,276 KB
testcase_16 AC 134 ms
41,276 KB
testcase_17 AC 289 ms
49,960 KB
testcase_18 AC 244 ms
47,560 KB
testcase_19 AC 225 ms
45,868 KB
testcase_20 AC 195 ms
45,124 KB
testcase_21 AC 199 ms
45,272 KB
testcase_22 AC 167 ms
42,308 KB
testcase_23 AC 189 ms
41,712 KB
testcase_24 AC 224 ms
42,504 KB
testcase_25 AC 201 ms
42,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int T = scan.nextInt();
		String []S = new String[T];
		for(int i = 0; i < T; i++) {
			S[i] = scan.next();
		}
		scan.close();
		for(int i = 0; i < T; i++) {
			solve(S[i]);
		}
	}
	public static void solve(String s) {
		int l = s.length();
		if(l == 1) {
			System.out.println(s);
			return ;
		}else {
			StringBuilder sb = new StringBuilder();
			for(int i = 0; i < l - 1; i++) {
				int s1 = Integer.parseInt(s.substring(i, i + 1));
				int s2 = Integer.parseInt(s.substring(i + 1, i + 2));
				int sum = s1 + s2;
				if(sum >= 10) {
					int k1 = sum / 10;
					int k2 = sum - 10;
					int sum2 = k1 + k2;
					sb.append(Integer.toString(sum2));
				}else {
					sb.append(Integer.toString(sum));
				}
			}
			//System.out.println(sb.length());
			solve(sb.toString());

		}

	}
}
0