結果

問題 No.481 1から10
ユーザー GodNegotoGodNegoto
提出日時 2019-11-01 15:18:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 4,416 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-09-14 22:42:25
合計ジャッジ時間 5,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,332 KB
testcase_01 AC 134 ms
41,240 KB
testcase_02 AC 131 ms
41,396 KB
testcase_03 AC 131 ms
40,936 KB
testcase_04 AC 130 ms
41,200 KB
testcase_05 AC 116 ms
40,032 KB
testcase_06 AC 130 ms
41,024 KB
testcase_07 AC 128 ms
40,968 KB
testcase_08 AC 127 ms
41,156 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class sample6 {
	public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	List<Integer> list = new ArrayList<Integer>();
	for(int i=0; i < 9; i++) {
		list.add(sc.nextInt());
	}
	for(int i=0; i<9; i++) {
		if(i+1 == list.get(i)) {
			
		}
		else {
			System.out.println(i+1);
			break;
		}
	}
	}
}
0