結果

問題 No.481 1から10
ユーザー villachvillach
提出日時 2017-10-13 16:59:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 3,482 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-11-17 11:25:49
合計ジャッジ時間 5,173 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,000 KB
testcase_01 AC 117 ms
40,848 KB
testcase_02 AC 117 ms
41,036 KB
testcase_03 AC 128 ms
40,844 KB
testcase_04 AC 128 ms
41,024 KB
testcase_05 AC 120 ms
41,328 KB
testcase_06 AC 104 ms
39,832 KB
testcase_07 AC 117 ms
41,012 KB
testcase_08 AC 119 ms
41,104 KB
testcase_09 AC 121 ms
41,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

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