結果

問題 No.481 1から10
ユーザー HaleakalaHaleakala
提出日時 2018-02-18 23:11:00
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 294 bytes
コンパイル時間 3,475 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 41,132 KB
最終ジャッジ日時 2024-07-05 00:01:58
合計ジャッジ時間 5,484 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,720 KB
testcase_01 AC 120 ms
40,920 KB
testcase_02 AC 124 ms
40,928 KB
testcase_03 AC 112 ms
40,944 KB
testcase_04 AC 109 ms
39,900 KB
testcase_05 AC 127 ms
40,804 KB
testcase_06 AC 118 ms
40,816 KB
testcase_07 AC 123 ms
41,132 KB
testcase_08 AC 114 ms
40,064 KB
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Answer {
	public static void main(String str[]) {
        Scanner sc = new Scanner(System.in);

        for(int i=1; i<=10; i++) {
        	if(i != Integer.valueOf(sc.next())) {
        		System.out.println(i);
        		return;
        	}
        }
	}
}
0