結果

問題 No.481 1から10
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 11:06:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 2,989 ms
コンパイル使用メモリ 75,500 KB
実行使用メモリ 41,732 KB
最終ジャッジ日時 2024-07-06 15:32:34
合計ジャッジ時間 4,634 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,732 KB
testcase_01 AC 101 ms
41,480 KB
testcase_02 AC 114 ms
41,184 KB
testcase_03 AC 112 ms
41,328 KB
testcase_04 AC 110 ms
41,188 KB
testcase_05 AC 100 ms
41,448 KB
testcase_06 AC 107 ms
40,104 KB
testcase_07 AC 103 ms
41,608 KB
testcase_08 AC 111 ms
41,460 KB
testcase_09 AC 100 ms
41,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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