結果

問題 No.481 1から10
ユーザー tanzakutanzaku
提出日時 2017-02-10 22:47:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 3,297 ms
コンパイル使用メモリ 75,616 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-06-08 18:33:35
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,008 KB
testcase_01 AC 127 ms
41,092 KB
testcase_02 AC 117 ms
41,396 KB
testcase_03 AC 107 ms
40,048 KB
testcase_04 AC 113 ms
40,640 KB
testcase_05 AC 106 ms
40,120 KB
testcase_06 AC 117 ms
41,124 KB
testcase_07 AC 114 ms
41,304 KB
testcase_08 AC 117 ms
41,124 KB
testcase_09 AC 103 ms
40,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;

public class _481 {
	public static void main(String[] args) throws IOException {
		new _481().solve();
	}

	void solve() throws IOException {
		try (final Scanner in = new Scanner(System.in)) {
			for (int i = 1; i < 10; i++) {
				if (in.nextInt() != i) {
					System.out.println(i);
					return;
				}
			}
			System.out.println(10);
		}
	}
	
	// for debug
	static void dump(Object... o) {
		System.err.println(Arrays.deepToString(o));
	}
}
0