結果

問題 No.481 1から10
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 02:38:00
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 263 bytes
コンパイル時間 2,009 ms
コンパイル使用メモリ 71,468 KB
実行使用メモリ 56,292 KB
最終ジャッジ日時 2023-09-13 07:50:28
合計ジャッジ時間 3,758 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
55,912 KB
testcase_01 AC 121 ms
56,292 KB
testcase_02 AC 122 ms
55,844 KB
testcase_03 AC 120 ms
55,776 KB
testcase_04 AC 120 ms
56,188 KB
testcase_05 AC 121 ms
55,776 KB
testcase_06 AC 117 ms
56,292 KB
testcase_07 AC 121 ms
55,732 KB
testcase_08 AC 122 ms
56,272 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