結果

問題 No.432 占い(Easy)
ユーザー uafr_csuafr_cs
提出日時 2016-10-14 22:55:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 729 bytes
コンパイル時間 2,686 ms
コンパイル使用メモリ 75,432 KB
実行使用メモリ 42,488 KB
最終ジャッジ日時 2024-11-22 08:26:51
合計ジャッジ時間 7,290 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,516 KB
testcase_01 AC 134 ms
41,128 KB
testcase_02 AC 132 ms
41,032 KB
testcase_03 AC 135 ms
41,228 KB
testcase_04 AC 139 ms
41,208 KB
testcase_05 AC 141 ms
41,360 KB
testcase_06 AC 146 ms
41,200 KB
testcase_07 AC 135 ms
41,228 KB
testcase_08 AC 138 ms
41,036 KB
testcase_09 AC 228 ms
42,468 KB
testcase_10 AC 149 ms
41,176 KB
testcase_11 AC 140 ms
41,124 KB
testcase_12 AC 155 ms
41,068 KB
testcase_13 AC 151 ms
41,320 KB
testcase_14 AC 126 ms
39,784 KB
testcase_15 AC 137 ms
41,332 KB
testcase_16 AC 135 ms
41,204 KB
testcase_17 AC 157 ms
41,116 KB
testcase_18 AC 172 ms
41,472 KB
testcase_19 AC 144 ms
41,184 KB
testcase_20 AC 145 ms
41,440 KB
testcase_21 AC 146 ms
41,348 KB
testcase_22 AC 163 ms
41,512 KB
testcase_23 AC 180 ms
41,704 KB
testcase_24 AC 226 ms
42,488 KB
testcase_25 AC 223 ms
42,344 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