結果

問題 No.481 1から10
ユーザー Yosuke Yamaguchi
提出日時 2020-12-29 23:45:24
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 3,908 ms
コンパイル使用メモリ 75,236 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-10-06 08:40:33
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// https://yukicoder.me/problems/no/481
public class OneToTen481 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);
    // String 1つ分を読み込む
    int result = 0;
    int n = 0;
    while (n < 9) {
      int s1 = Integer.parseInt(sc.next());
      n += 1;
      if (s1 - n > 0 && result == 0) {
        // 標準出力に書き出す。
        result = n;
      }
    }
    if (result == 0)
      result = 10;
    System.out.println(result);
  }
}
0