結果

問題 No.432 占い(Easy)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-24 03:38:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 76,464 KB
実行使用メモリ 59,712 KB
最終ジャッジ日時 2024-10-11 06:04:05
合計ジャッジ時間 9,540 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
54,780 KB
testcase_01 AC 135 ms
53,952 KB
testcase_02 AC 166 ms
54,976 KB
testcase_03 AC 179 ms
55,140 KB
testcase_04 AC 203 ms
55,020 KB
testcase_05 AC 173 ms
54,924 KB
testcase_06 AC 146 ms
54,016 KB
testcase_07 AC 199 ms
55,312 KB
testcase_08 AC 172 ms
55,012 KB
testcase_09 AC 212 ms
54,840 KB
testcase_10 AC 214 ms
55,296 KB
testcase_11 AC 255 ms
57,956 KB
testcase_12 AC 352 ms
59,476 KB
testcase_13 AC 349 ms
59,436 KB
testcase_14 AC 248 ms
57,964 KB
testcase_15 AC 171 ms
54,988 KB
testcase_16 AC 176 ms
55,036 KB
testcase_17 AC 344 ms
59,712 KB
testcase_18 AC 322 ms
59,384 KB
testcase_19 AC 317 ms
59,624 KB
testcase_20 AC 263 ms
58,020 KB
testcase_21 AC 263 ms
58,012 KB
testcase_22 AC 219 ms
55,364 KB
testcase_23 AC 223 ms
55,100 KB
testcase_24 AC 237 ms
54,944 KB
testcase_25 AC 219 ms
54,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		
		for (int i=0; i<n; i++) {
			String s = sc.next();
			String a = s;
			
			while (true) { //1桁になるまでループを回す
				if (a.length()==1) {break;}
				String b = "";
				
				for (int j=0; j<a.length()-1; j++) {
					
					int i1 = Integer.parseInt(a.substring(j,j+1));
					i1 += Integer.parseInt(a.substring(j+1,j+2));
					b += i1/10 + i1%10;
					
				}
				
				a = b;
			}
			
			out.println(a);
		}
	}
}
0