結果

問題 No.481 1から10
ユーザー KatoooooKatooooo
提出日時 2017-02-25 20:16:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 3,493 ms
コンパイル使用メモリ 77,668 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-06-11 15:07:43
合計ジャッジ時間 5,678 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,568 KB
testcase_01 AC 123 ms
41,476 KB
testcase_02 AC 110 ms
41,180 KB
testcase_03 AC 112 ms
41,124 KB
testcase_04 AC 126 ms
41,396 KB
testcase_05 AC 126 ms
41,548 KB
testcase_06 AC 128 ms
41,488 KB
testcase_07 AC 129 ms
41,464 KB
testcase_08 AC 127 ms
41,524 KB
testcase_09 AC 127 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class to {

  public static void main(String[] args){

    Scanner input = new Scanner(System.in);
    String scr = input.nextLine();

    String[]num = scr.split(" ");
    int i = 1;

    for(i = 1; i<10; i++){
      int a = Integer.parseInt(num[i-1]);//数値に変換
      if(i!=a){
        System.out.println(a-1);
        break;
      }else if(a==9){
        System.out.println("10");
      }
    }

  }

}
0