結果

問題 No.481 1から10
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-13 22:32:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 3,657 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-06-28 10:42:53
合計ジャッジ時間 5,345 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,136 KB
testcase_01 AC 134 ms
54,012 KB
testcase_02 AC 133 ms
54,156 KB
testcase_03 AC 131 ms
54,348 KB
testcase_04 AC 132 ms
53,952 KB
testcase_05 AC 133 ms
54,364 KB
testcase_06 AC 130 ms
54,036 KB
testcase_07 AC 129 ms
54,116 KB
testcase_08 AC 134 ms
54,432 KB
testcase_09 AC 133 ms
53,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class FromOnetoTen{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        for(int i = 1; i <= 9; i++){
            int b = sc.nextInt();
            if(b != i){
                System.out.println(i);
                break;
            }
            if(i == 9 && b == 9){
                System.out.println(10);
            }
        }
    }
}
0