結果

問題 No.481 1から10
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 16:43:26
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 277 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 75,128 KB
実行使用メモリ 54,740 KB
最終ジャッジ日時 2024-09-13 10:20:42
合計ジャッジ時間 4,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,688 KB
testcase_01 AC 117 ms
52,576 KB
testcase_02 AC 129 ms
54,144 KB
testcase_03 AC 118 ms
54,740 KB
testcase_04 AC 133 ms
53,800 KB
testcase_05 AC 117 ms
52,684 KB
testcase_06 AC 129 ms
54,068 KB
testcase_07 AC 129 ms
54,100 KB
testcase_08 AC 125 ms
53,960 KB
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

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 (sc.nextInt() != i) {
				System.out.println(i);
				return;
			}
			if (i == 10) System.out.println(10);
		}
		
	}
}
0