結果

問題 No.773 コンテスト
ユーザー GodNegotoGodNegoto
提出日時 2019-11-16 11:03:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 3,739 ms
コンパイル使用メモリ 81,064 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-09-24 23:19:18
合計ジャッジ時間 7,924 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,136 KB
testcase_01 AC 129 ms
54,080 KB
testcase_02 AC 130 ms
54,076 KB
testcase_03 AC 129 ms
53,992 KB
testcase_04 AC 131 ms
54,096 KB
testcase_05 AC 130 ms
54,188 KB
testcase_06 AC 135 ms
53,856 KB
testcase_07 AC 130 ms
54,076 KB
testcase_08 AC 130 ms
54,276 KB
testcase_09 AC 130 ms
54,184 KB
testcase_10 AC 132 ms
54,204 KB
testcase_11 AC 135 ms
54,212 KB
testcase_12 AC 133 ms
53,812 KB
testcase_13 AC 131 ms
54,300 KB
testcase_14 AC 130 ms
54,076 KB
testcase_15 AC 131 ms
53,828 KB
testcase_16 AC 130 ms
54,100 KB
testcase_17 AC 129 ms
54,152 KB
testcase_18 AC 128 ms
53,968 KB
testcase_19 AC 130 ms
54,124 KB
testcase_20 AC 116 ms
52,948 KB
testcase_21 AC 129 ms
53,964 KB
testcase_22 AC 130 ms
54,200 KB
testcase_23 AC 127 ms
53,816 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) {
		for(int i = A; i <= B; i++) {
			if(i == l) {
				cnt--;
			}
		}
	}
	System.out.println(cnt);
	}
}
0