結果

問題 No.481 1から10
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-02-10 22:31:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 2,872 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 41,356 KB
最終ジャッジ日時 2024-06-08 17:53:23
合計ジャッジ時間 4,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,784 KB
testcase_01 AC 113 ms
40,272 KB
testcase_02 AC 123 ms
41,324 KB
testcase_03 AC 122 ms
41,356 KB
testcase_04 AC 123 ms
41,036 KB
testcase_05 AC 118 ms
41,300 KB
testcase_06 AC 109 ms
40,332 KB
testcase_07 AC 122 ms
41,356 KB
testcase_08 AC 115 ms
40,272 KB
testcase_09 AC 118 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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