結果

問題 No.481 1から10
ユーザー kazapyon27kazapyon27
提出日時 2017-05-07 23:31:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 3,607 ms
コンパイル使用メモリ 75,588 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-09-14 14:53:42
合計ジャッジ時間 5,237 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,412 KB
testcase_01 AC 130 ms
41,196 KB
testcase_02 AC 128 ms
41,136 KB
testcase_03 AC 130 ms
41,408 KB
testcase_04 AC 130 ms
41,084 KB
testcase_05 AC 129 ms
41,112 KB
testcase_06 AC 115 ms
40,336 KB
testcase_07 AC 130 ms
41,396 KB
testcase_08 AC 120 ms
40,392 KB
testcase_09 AC 115 ms
40,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.481 1から10*/
import java.util.*;
public class No481 {
	public static void main(String[] args) {
		byte n_hairetsu[]=new byte[9],i;
		try(Scanner input = new Scanner((System.in))){
			for(i=0;i<n_hairetsu.length;i++){
				n_hairetsu[i]=input.nextByte();
			}
			for(i=0;i<n_hairetsu.length;i++){
				if(i+1!=n_hairetsu[i]){
					break;
				}
			}
			System.out.println(i+1);	
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0