結果

問題 No.481 1から10
ユーザー bob___wbob___w
提出日時 2017-02-17 20:24:09
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 335 bytes
コンパイル時間 3,999 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 53,984 KB
最終ジャッジ日時 2024-06-09 21:15:51
合計ジャッジ時間 6,573 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,312 KB
testcase_01 AC 128 ms
41,396 KB
testcase_02 AC 126 ms
41,336 KB
testcase_03 AC 130 ms
41,328 KB
testcase_04 AC 127 ms
41,200 KB
testcase_05 AC 129 ms
41,424 KB
testcase_06 AC 126 ms
41,196 KB
testcase_07 AC 131 ms
41,228 KB
testcase_08 AC 127 ms
41,196 KB
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Test15 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String ss = sc.nextLine();

		String[]s =ss.split(" ");
		int c=1;
		for(int i=1;i<=10;i++){
			int a = Integer.parseInt(s[i-1]);
			if(a!=c){
				System.out.println(a-1);
				break;
			}
			c++;
		}
	}
}
0