結果

問題 No.432 占い(Easy)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 02:32:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 571 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 76,280 KB
実行使用メモリ 50,936 KB
最終ジャッジ日時 2024-11-26 02:02:09
合計ジャッジ時間 10,091 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
42,476 KB
testcase_01 AC 119 ms
40,900 KB
testcase_02 AC 165 ms
42,460 KB
testcase_03 AC 164 ms
42,712 KB
testcase_04 AC 206 ms
43,508 KB
testcase_05 AC 168 ms
42,308 KB
testcase_06 AC 121 ms
40,636 KB
testcase_07 AC 200 ms
43,372 KB
testcase_08 AC 151 ms
42,396 KB
testcase_09 AC 196 ms
42,768 KB
testcase_10 AC 240 ms
44,496 KB
testcase_11 AC 297 ms
46,984 KB
testcase_12 AC 571 ms
50,936 KB
testcase_13 AC 522 ms
50,928 KB
testcase_14 AC 282 ms
46,928 KB
testcase_15 AC 169 ms
42,188 KB
testcase_16 AC 155 ms
42,580 KB
testcase_17 AC 519 ms
50,408 KB
testcase_18 AC 441 ms
49,520 KB
testcase_19 AC 386 ms
48,428 KB
testcase_20 AC 329 ms
47,036 KB
testcase_21 AC 315 ms
47,600 KB
testcase_22 AC 255 ms
45,048 KB
testcase_23 AC 261 ms
44,980 KB
testcase_24 AC 214 ms
43,104 KB
testcase_25 AC 198 ms
42,736 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