結果

問題 No.481 1から10
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 02:38:00
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 263 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 56,132 KB
最終ジャッジ日時 2024-06-30 17:52:07
合計ジャッジ時間 3,825 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,988 KB
testcase_01 AC 125 ms
56,132 KB
testcase_02 AC 125 ms
53,840 KB
testcase_03 AC 128 ms
53,968 KB
testcase_04 AC 127 ms
53,988 KB
testcase_05 AC 126 ms
54,344 KB
testcase_06 AC 127 ms
54,052 KB
testcase_07 AC 128 ms
54,148 KB
testcase_08 AC 127 ms
54,104 KB
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no481{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int b[]=new int[9],i;
		for(i=0;i<9;i++) b[i]=stdIn.nextInt();
		for(i=0;;i++) if(b[i]!=i+1) break;
		System.out.print(i+1);
	}
}
0