結果

問題 No.682 Average
ユーザー fal_rndfal_rnd
提出日時 2018-05-12 12:49:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 2,661 ms
コンパイル使用メモリ 78,568 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-06-28 09:32:57
合計ジャッジ時間 5,154 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,040 KB
testcase_01 AC 132 ms
54,208 KB
testcase_02 AC 133 ms
53,932 KB
testcase_03 AC 132 ms
53,840 KB
testcase_04 AC 133 ms
54,172 KB
testcase_05 AC 132 ms
54,168 KB
testcase_06 AC 136 ms
54,216 KB
testcase_07 AC 133 ms
54,156 KB
testcase_08 AC 131 ms
53,900 KB
testcase_09 AC 130 ms
54,016 KB
testcase_10 AC 130 ms
54,084 KB
testcase_11 AC 131 ms
53,872 KB
testcase_12 AC 130 ms
53,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;

class Main{
	static Scanner s=new Scanner(System.in);
	static int gInt(){
		return Integer.parseInt(s.next());
	}
	public static void main(String[] A){
		int a=gInt(),b=gInt();
		System.out.println(IntStream.range(a,b+1).filter(i->(a+b+i)%3==0).count());
	}
}
0