結果

問題 No.481 1から10
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-19 23:16:13
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 398 bytes
コンパイル時間 2,275 ms
コンパイル使用メモリ 75,096 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-06-09 14:30:53
合計ジャッジ時間 3,820 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,964 KB
testcase_01 AC 124 ms
54,048 KB
testcase_02 AC 119 ms
54,012 KB
testcase_03 AC 117 ms
54,064 KB
testcase_04 AC 118 ms
53,924 KB
testcase_05 AC 123 ms
53,972 KB
testcase_06 AC 118 ms
53,928 KB
testcase_07 AC 121 ms
54,088 KB
testcase_08 AC 116 ms
54,044 KB
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);

        int i = 1;

        for(i=1; i<11; i++) {
            int x = in.nextInt();
            if(x != i) break;
        }

        System.out.println(i);

        in.close();
    }
}
0