結果

問題 No.432 占い(Easy)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-24 03:42:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 47,528 KB
最終ジャッジ日時 2024-10-11 06:04:22
合計ジャッジ時間 7,879 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,296 KB
testcase_01 AC 137 ms
41,396 KB
testcase_02 AC 138 ms
41,144 KB
testcase_03 AC 142 ms
41,380 KB
testcase_04 AC 152 ms
41,832 KB
testcase_05 AC 139 ms
41,344 KB
testcase_06 AC 148 ms
41,540 KB
testcase_07 AC 162 ms
41,840 KB
testcase_08 AC 142 ms
41,288 KB
testcase_09 AC 225 ms
42,708 KB
testcase_10 AC 177 ms
42,084 KB
testcase_11 AC 185 ms
45,392 KB
testcase_12 AC 264 ms
47,368 KB
testcase_13 AC 259 ms
47,312 KB
testcase_14 AC 184 ms
45,116 KB
testcase_15 AC 140 ms
41,380 KB
testcase_16 AC 143 ms
41,108 KB
testcase_17 AC 263 ms
47,528 KB
testcase_18 AC 242 ms
47,000 KB
testcase_19 AC 222 ms
45,900 KB
testcase_20 AC 192 ms
45,640 KB
testcase_21 AC 194 ms
45,704 KB
testcase_22 AC 183 ms
41,988 KB
testcase_23 AC 180 ms
41,628 KB
testcase_24 AC 208 ms
42,648 KB
testcase_25 AC 222 ms
42,252 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();
		String s;
		String a;
		StringBuilder sb = new StringBuilder();
		
		for (int i=0; i<n; i++) {
			s = sc.next();
			a = s;
			
			while (true) { //1桁になるまでループを回す
				if (a.length()==1) {break;}
				sb.setLength(0);
				
				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));
					sb.append(i1/10+i1%10);
					
				}
				
				a = sb.toString();
			}
			
			out.println(a);
		}
	}
}
0