結果

問題 No.481 1から10
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 16:44:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 73,632 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-09-13 10:23:02
合計ジャッジ時間 4,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,364 KB
testcase_01 AC 129 ms
41,480 KB
testcase_02 AC 127 ms
41,084 KB
testcase_03 AC 129 ms
41,252 KB
testcase_04 AC 129 ms
41,188 KB
testcase_05 AC 115 ms
40,208 KB
testcase_06 AC 129 ms
41,572 KB
testcase_07 AC 127 ms
41,192 KB
testcase_08 AC 130 ms
41,456 KB
testcase_09 AC 128 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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