結果

問題 No.773 コンテスト
ユーザー 37zigen37zigen
提出日時 2020-01-23 04:53:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 73,744 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-07-18 07:42:37
合計ジャッジ時間 5,451 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,532 KB
testcase_01 AC 108 ms
41,536 KB
testcase_02 AC 109 ms
41,116 KB
testcase_03 AC 111 ms
41,128 KB
testcase_04 AC 100 ms
41,328 KB
testcase_05 AC 114 ms
41,428 KB
testcase_06 AC 99 ms
41,472 KB
testcase_07 AC 109 ms
41,344 KB
testcase_08 AC 101 ms
41,296 KB
testcase_09 AC 111 ms
41,288 KB
testcase_10 AC 109 ms
41,420 KB
testcase_11 AC 108 ms
41,244 KB
testcase_12 AC 97 ms
41,472 KB
testcase_13 AC 97 ms
41,024 KB
testcase_14 AC 97 ms
41,020 KB
testcase_15 AC 108 ms
41,528 KB
testcase_16 AC 110 ms
41,384 KB
testcase_17 AC 94 ms
41,436 KB
testcase_18 AC 99 ms
41,308 KB
testcase_19 AC 108 ms
41,404 KB
testcase_20 AC 112 ms
41,152 KB
testcase_21 AC 108 ms
41,028 KB
testcase_22 AC 108 ms
41,376 KB
testcase_23 AC 93 ms
41,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

class Main{
	public static void main(String[] args){
		new Main().run();
	}
	
	void run(){
		Scanner sc=new Scanner(System.in);
		int[] a=new int[99];
		a[23]++;
		a[24]++;
		a[25]++;
		int A=sc.nextInt();
		int B=sc.nextInt();
		for(int i=A;i<=B;++i)a[i]--;
		int ans=0;
		for(int i=23;i<=25;++i)ans+=a[i];
		System.out.println(ans);
	}
}
0