結果

問題 No.481 1から10
ユーザー springspring
提出日時 2019-06-12 16:04:09
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-10-10 22:20:06
合計ジャッジ時間 4,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		for(int i=1;i<=9;i++){
			int input = sc.nextInt();
			if(input==i){
				if(i==9){
					System.out.println(10);
				}
				continue;
			}else if(input==9){
				System.out.println(i);
				break;
			}else{
				System.out.println(i);
				break;
			}
		}
		sc.close();
	}// mainmethod

} // class
0