結果

問題 No.481 1から10
ユーザー cande398cande398
提出日時 2017-10-08 00:11:40
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 245 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-11-17 04:40:22
合計ジャッジ時間 4,351 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,052 KB
testcase_01 AC 119 ms
40,048 KB
testcase_02 AC 134 ms
41,076 KB
testcase_03 AC 134 ms
40,944 KB
testcase_04 AC 133 ms
41,260 KB
testcase_05 AC 134 ms
41,300 KB
testcase_06 AC 136 ms
41,128 KB
testcase_07 AC 119 ms
40,132 KB
testcase_08 AC 135 ms
41,220 KB
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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