結果

問題 No.432 占い(Easy)
ユーザー htensaihtensai
提出日時 2019-11-19 13:56:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 77,144 KB
実行使用メモリ 55,900 KB
最終ジャッジ日時 2024-10-03 06:27:29
合計ジャッジ時間 5,947 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,892 KB
testcase_01 AC 110 ms
53,736 KB
testcase_02 AC 113 ms
54,044 KB
testcase_03 AC 101 ms
53,056 KB
testcase_04 AC 109 ms
53,912 KB
testcase_05 AC 110 ms
53,208 KB
testcase_06 AC 118 ms
53,964 KB
testcase_07 AC 114 ms
54,000 KB
testcase_08 AC 108 ms
53,860 KB
testcase_09 AC 142 ms
54,628 KB
testcase_10 AC 119 ms
53,860 KB
testcase_11 AC 117 ms
53,972 KB
testcase_12 AC 114 ms
53,228 KB
testcase_13 AC 131 ms
54,280 KB
testcase_14 AC 117 ms
54,144 KB
testcase_15 AC 102 ms
52,748 KB
testcase_16 AC 113 ms
54,252 KB
testcase_17 AC 125 ms
55,900 KB
testcase_18 AC 125 ms
53,576 KB
testcase_19 AC 117 ms
53,608 KB
testcase_20 AC 123 ms
54,080 KB
testcase_21 AC 120 ms
53,840 KB
testcase_22 AC 126 ms
54,332 KB
testcase_23 AC 129 ms
54,352 KB
testcase_24 AC 143 ms
54,392 KB
testcase_25 AC 148 ms
54,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int t = sc.nextInt();
		int[][] arr = new int[t][];
		for (int i = 0; i < t; i++) {
		    String line = sc.next();
		    arr[i] = new int[line.length()];
		    for (int j = 0; j < line.length(); j++) {
		        arr[i][j] = line.charAt(j) - '0';
		    }
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < t; i++) {
		    for (int j = 0; j < arr[i].length - 1; j++) {
		        for (int k = 0; k < arr[i].length - j - 1; k++) {
		            int x = arr[i][k] + arr[i][k + 1];
		            arr[i][k] = x / 10 + x % 10;
		        }
		    }
		    sb.append(arr[i][0]).append("\n");
		}
		System.out.print(sb);
	}
}
0