結果

問題 No.481 1から10
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-02-10 22:23:06
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 328 bytes
コンパイル時間 2,628 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-06-08 16:58:04
合計ジャッジ時間 4,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,284 KB
testcase_01 AC 116 ms
41,096 KB
testcase_02 AC 110 ms
40,184 KB
testcase_03 AC 116 ms
41,516 KB
testcase_04 AC 112 ms
41,324 KB
testcase_05 AC 118 ms
41,272 KB
testcase_06 AC 110 ms
41,080 KB
testcase_07 AC 108 ms
40,228 KB
testcase_08 AC 104 ms
40,312 KB
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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