結果

問題 No.432 占い(Easy)
ユーザー uafr_csuafr_cs
提出日時 2016-10-14 22:55:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 729 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 75,324 KB
実行使用メモリ 54,764 KB
最終ジャッジ日時 2024-05-01 23:57:43
合計ジャッジ時間 7,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,032 KB
testcase_01 AC 138 ms
54,144 KB
testcase_02 AC 137 ms
54,184 KB
testcase_03 AC 138 ms
54,144 KB
testcase_04 AC 138 ms
53,948 KB
testcase_05 AC 141 ms
54,000 KB
testcase_06 AC 153 ms
54,152 KB
testcase_07 AC 140 ms
53,996 KB
testcase_08 AC 137 ms
54,060 KB
testcase_09 AC 234 ms
54,764 KB
testcase_10 AC 157 ms
54,112 KB
testcase_11 AC 149 ms
54,052 KB
testcase_12 AC 155 ms
54,188 KB
testcase_13 AC 157 ms
54,268 KB
testcase_14 AC 144 ms
54,244 KB
testcase_15 AC 139 ms
54,120 KB
testcase_16 AC 147 ms
54,080 KB
testcase_17 AC 162 ms
54,040 KB
testcase_18 AC 188 ms
54,364 KB
testcase_19 AC 166 ms
54,080 KB
testcase_20 AC 150 ms
54,016 KB
testcase_21 AC 145 ms
54,156 KB
testcase_22 AC 162 ms
53,956 KB
testcase_23 AC 179 ms
54,140 KB
testcase_24 AC 226 ms
54,592 KB
testcase_25 AC 223 ms
54,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int T = sc.nextInt();
		for(int tt = 0; tt < T; tt++){
			final char[] inputs = sc.next().toCharArray();
			
			int[] curr = new int[inputs.length];
			for(int i = 0; i < inputs.length; i++){
				curr[i] = Character.getNumericValue(inputs[i]);
			}
			
			for(int length = curr.length; length >= 1; length--){
				for(int i = 0; i < length - 1; i++){
					curr[i] = (curr[i] + curr[i + 1]) % 10 + (curr[i] + curr[i + 1]) / 10;
				}
			}
			
			System.out.println(curr[0]);
		}
		
	}

}
0