結果

問題 No.481 1から10
ユーザー eagleeagle
提出日時 2022-05-26 15:38:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 1,856 ms
コンパイル使用メモリ 74,144 KB
実行使用メモリ 41,184 KB
最終ジャッジ日時 2024-09-20 15:01:28
合計ジャッジ時間 3,522 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
39,980 KB
testcase_01 AC 103 ms
40,040 KB
testcase_02 AC 106 ms
40,520 KB
testcase_03 AC 100 ms
39,952 KB
testcase_04 AC 101 ms
40,056 KB
testcase_05 AC 100 ms
40,072 KB
testcase_06 AC 100 ms
40,036 KB
testcase_07 AC 101 ms
40,268 KB
testcase_08 AC 109 ms
39,940 KB
testcase_09 AC 110 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		int[] B = new int[9];
		for(int i = 0; i < B.length; i++) {
			B[i] = sc.nextInt();
		}
		int num = 1;
		
		for(int i = 0; i < B.length; i++) {
			if(num != B[i]) {
				break;
			}
			num++;
		}
		System.out.println(num);
	}
}
0