結果

問題 No.432 占い(Easy)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 02:32:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 539 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 1,928 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 51,916 KB
最終ジャッジ日時 2024-05-04 14:07:45
合計ジャッジ時間 9,474 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
42,416 KB
testcase_01 AC 114 ms
41,096 KB
testcase_02 AC 140 ms
42,352 KB
testcase_03 AC 155 ms
42,596 KB
testcase_04 AC 174 ms
43,428 KB
testcase_05 AC 168 ms
42,572 KB
testcase_06 AC 128 ms
41,260 KB
testcase_07 AC 199 ms
43,360 KB
testcase_08 AC 149 ms
42,288 KB
testcase_09 AC 182 ms
42,736 KB
testcase_10 AC 223 ms
44,704 KB
testcase_11 AC 276 ms
46,772 KB
testcase_12 AC 539 ms
51,916 KB
testcase_13 AC 536 ms
50,508 KB
testcase_14 AC 275 ms
47,408 KB
testcase_15 AC 170 ms
42,512 KB
testcase_16 AC 169 ms
42,832 KB
testcase_17 AC 530 ms
50,968 KB
testcase_18 AC 430 ms
49,676 KB
testcase_19 AC 356 ms
47,240 KB
testcase_20 AC 292 ms
47,480 KB
testcase_21 AC 308 ms
47,008 KB
testcase_22 AC 240 ms
45,120 KB
testcase_23 AC 221 ms
43,836 KB
testcase_24 AC 200 ms
42,848 KB
testcase_25 AC 181 ms
42,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        for(int i=0; i<N; i++){
            String S = sc.next();
            while( S.length()!=1 ){
                String [] arr = S.split("");
                S="";
                for(int j=1; j<arr.length; j++){
                    int r = Integer.parseInt(arr[j-1]) + Integer.parseInt(arr[j]);
                    if(r>=10){
                        r=r/10+r%10;
                    }
                    S=S+r;
                }
            }
            System.out.println(S);
        }
    }
}
0