結果

問題 No.481 1から10
ユーザー ikawaiikawai
提出日時 2023-09-05 16:42:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 2,742 ms
コンパイル使用メモリ 73,820 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-06-23 12:11:10
合計ジャッジ時間 4,040 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,112 KB
testcase_01 AC 131 ms
54,048 KB
testcase_02 AC 130 ms
54,036 KB
testcase_03 AC 130 ms
54,352 KB
testcase_04 AC 131 ms
54,172 KB
testcase_05 AC 133 ms
53,740 KB
testcase_06 AC 133 ms
54,000 KB
testcase_07 AC 132 ms
54,124 KB
testcase_08 AC 135 ms
54,384 KB
testcase_09 AC 136 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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