結果

問題 No.481 1から10
ユーザー マサマサ
提出日時 2022-02-09 16:14:58
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 298 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-06-24 20:08:37
合計ジャッジ時間 3,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,240 KB
testcase_01 AC 125 ms
41,488 KB
testcase_02 AC 119 ms
40,168 KB
testcase_03 AC 125 ms
41,188 KB
testcase_04 AC 110 ms
40,176 KB
testcase_05 AC 125 ms
41,312 KB
testcase_06 AC 124 ms
41,124 KB
testcase_07 AC 125 ms
41,240 KB
testcase_08 AC 113 ms
39,964 KB
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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