結果

問題 No.773 コンテスト
ユーザー GodNegotoGodNegoto
提出日時 2019-11-16 10:54:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 3,468 ms
コンパイル使用メモリ 75,052 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-09-24 23:17:29
合計ジャッジ時間 7,166 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,168 KB
testcase_01 WA -
testcase_02 AC 127 ms
54,124 KB
testcase_03 AC 127 ms
53,792 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 117 ms
52,956 KB
testcase_08 AC 115 ms
52,604 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 129 ms
54,000 KB
testcase_15 WA -
testcase_16 AC 126 ms
53,636 KB
testcase_17 AC 128 ms
54,180 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 129 ms
53,764 KB
testcase_22 WA -
testcase_23 AC 118 ms
52,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.*;

public class sample1 {
	public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	int A = sc.nextInt();
	int B = sc.nextInt();
	List<Integer> list = new ArrayList<>();
	list.add(23);
	list.add(24);
	list.add(25);
	int cnt = 3;
	for(int l : list) {
		if(A == l) {
			cnt--;
		}
		if(B == l) {
			cnt--;
		}
	}
	System.out.println(cnt);
	}
}
0