結果

問題 No.481 1から10
ユーザー eagleeagle
提出日時 2022-05-26 15:37:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 73,992 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-09-20 15:01:23
合計ジャッジ時間 3,536 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
39,988 KB
testcase_01 AC 119 ms
40,724 KB
testcase_02 AC 98 ms
39,936 KB
testcase_03 AC 113 ms
40,916 KB
testcase_04 WA -
testcase_05 AC 117 ms
41,264 KB
testcase_06 AC 108 ms
40,584 KB
testcase_07 AC 103 ms
39,772 KB
testcase_08 AC 112 ms
40,896 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = B[0];
		for(int i = 1; i < B.length; i++) {
			if(num + 1 != B[i]) {
				num++;
				break;
			}
			num++;
		}
		System.out.println(num);
	}
}
0