結果

問題 No.481 1から10
ユーザー ThhG_9l3ThhG_9l3
提出日時 2018-05-05 15:10:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 3,581 ms
コンパイル使用メモリ 74,728 KB
実行使用メモリ 41,476 KB
最終ジャッジ日時 2024-06-28 01:56:22
合計ジャッジ時間 5,415 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,204 KB
testcase_01 AC 134 ms
41,264 KB
testcase_02 AC 132 ms
41,364 KB
testcase_03 AC 134 ms
41,476 KB
testcase_04 AC 134 ms
41,260 KB
testcase_05 AC 133 ms
41,028 KB
testcase_06 AC 133 ms
41,420 KB
testcase_07 AC 120 ms
39,772 KB
testcase_08 AC 134 ms
41,364 KB
testcase_09 AC 133 ms
41,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukikoda;
import java.util.Scanner;
public class no481 {
	public static void main(String[] args) {
		int[] num = new int[9];
		int number = 10;
		Scanner sc = new Scanner(System.in);

		for(int i=0; i<9; i++) {
			num[i] = sc.nextInt();
		}

		for(int j=1; j<=9; j++) {
			if(num[j-1] != j) {
				number = j;
				break;
			}
		}

		System.out.println(number);
	}
}
0