結果

問題 No.481 1から10
ユーザー 37zigen37zigen
提出日時 2017-02-11 01:43:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 3,039 ms
コンパイル使用メモリ 73,932 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-06-09 08:03:44
合計ジャッジ時間 4,761 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
39,968 KB
testcase_01 AC 133 ms
41,340 KB
testcase_02 AC 121 ms
41,416 KB
testcase_03 AC 126 ms
41,368 KB
testcase_04 AC 116 ms
41,292 KB
testcase_05 AC 132 ms
41,148 KB
testcase_06 AC 131 ms
41,316 KB
testcase_07 AC 116 ms
40,168 KB
testcase_08 AC 126 ms
41,244 KB
testcase_09 AC 126 ms
41,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		boolean[] vis = new boolean[10];
		for (int i = 0; i < 9; ++i) {
			int b = sc.nextInt() - 1;
			vis[b] = true;
		}
		for (int i = 0; i < 10; ++i) {
			if (!vis[i]) {
				System.out.println(i + 1);
			}
		}
	}
}
0