結果

問題 No.432 占い(Easy)
ユーザー tentententen
提出日時 2020-11-04 12:02:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 42,136 KB
最終ジャッジ日時 2024-07-22 09:55:22
合計ジャッジ時間 7,066 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,148 KB
testcase_01 AC 144 ms
41,456 KB
testcase_02 AC 134 ms
41,028 KB
testcase_03 AC 137 ms
41,000 KB
testcase_04 AC 135 ms
41,156 KB
testcase_05 AC 137 ms
41,244 KB
testcase_06 AC 140 ms
41,608 KB
testcase_07 AC 144 ms
41,320 KB
testcase_08 AC 120 ms
39,912 KB
testcase_09 AC 181 ms
41,936 KB
testcase_10 AC 142 ms
41,516 KB
testcase_11 AC 135 ms
41,148 KB
testcase_12 AC 144 ms
41,172 KB
testcase_13 AC 145 ms
41,084 KB
testcase_14 AC 142 ms
41,272 KB
testcase_15 AC 136 ms
41,468 KB
testcase_16 AC 139 ms
41,240 KB
testcase_17 AC 147 ms
41,208 KB
testcase_18 AC 169 ms
41,372 KB
testcase_19 AC 148 ms
41,364 KB
testcase_20 AC 142 ms
41,140 KB
testcase_21 AC 157 ms
41,676 KB
testcase_22 AC 143 ms
41,256 KB
testcase_23 AC 151 ms
41,540 KB
testcase_24 AC 182 ms
42,008 KB
testcase_25 AC 190 ms
42,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int t = sc.nextInt();
		StringBuilder sb = new StringBuilder();
		while (0 < t--) {
		    char[] tmp = sc.next().toCharArray();
		    int n = tmp.length;
		    int[] arr = new int[n];
    		for (int i = 0; i < n; i++) {
    		    arr[i] = tmp[i] - '0';
    		}
    		for (int i = n - 1; i >= 0; i--) {
    		    for (int j = 0; j < i; j++) {
    		        arr[j] = calc(arr[j], arr[j + 1]);
    		    }
    		}
    		sb.append(arr[0]).append("\n");
		}
		System.out.print(sb);
	}
	
	static int calc(int x, int y) {
	    int ans = x + y;
	    return ans / 10 + ans % 10;
	}
}
0