結果

問題 No.481 1から10
ユーザー bellbell
提出日時 2021-02-12 19:58:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 73,896 KB
実行使用メモリ 41,164 KB
最終ジャッジ日時 2024-07-19 18:46:23
合計ジャッジ時間 3,468 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
39,988 KB
testcase_01 AC 98 ms
39,760 KB
testcase_02 AC 100 ms
40,040 KB
testcase_03 AC 116 ms
40,912 KB
testcase_04 AC 117 ms
41,072 KB
testcase_05 AC 112 ms
39,900 KB
testcase_06 AC 117 ms
40,188 KB
testcase_07 AC 106 ms
41,008 KB
testcase_08 AC 105 ms
40,952 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int n=0;
        int result=0;

        for(int i=1; i<=9; i++){
            n=sc.nextInt();
        if(i != n){
            result=n-1;
            break;
        }
    }
        System.out.println(result);
            sc.close();
		}
    }
0