結果

問題 No.481 1から10
ユーザー villachvillach
提出日時 2017-10-13 16:59:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 3,689 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-04-28 17:30:50
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,220 KB
testcase_01 AC 132 ms
41,292 KB
testcase_02 AC 135 ms
41,420 KB
testcase_03 AC 136 ms
41,336 KB
testcase_04 AC 134 ms
41,308 KB
testcase_05 AC 134 ms
41,184 KB
testcase_06 AC 135 ms
41,328 KB
testcase_07 AC 138 ms
41,452 KB
testcase_08 AC 136 ms
41,348 KB
testcase_09 AC 136 ms
41,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

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