結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,976 KB
testcase_01 AC 132 ms
54,040 KB
testcase_02 AC 134 ms
54,012 KB
testcase_03 AC 131 ms
54,184 KB
testcase_04 AC 132 ms
54,080 KB
testcase_05 AC 133 ms
53,896 KB
testcase_06 AC 133 ms
54,128 KB
testcase_07 AC 134 ms
54,200 KB
testcase_08 AC 135 ms
54,060 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;
			}
		}
		
	}
}
0