結果

問題 No.481 1から10
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-13 22:24:55
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 332 bytes
コンパイル時間 3,447 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-06-28 10:42:20
合計ジャッジ時間 5,100 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,832 KB
testcase_01 AC 128 ms
41,008 KB
testcase_02 AC 127 ms
41,068 KB
testcase_03 AC 127 ms
41,032 KB
testcase_04 AC 114 ms
40,220 KB
testcase_05 AC 124 ms
41,164 KB
testcase_06 AC 125 ms
41,192 KB
testcase_07 AC 126 ms
41,384 KB
testcase_08 AC 126 ms
40,972 KB
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

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 <= 10; i++){
            int b = sc.nextInt();
            if(b != i){
                System.out.println(i);
                break;
            }
        }
    }
}
0