結果

問題 No.682 Average
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 00:10:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-06-30 17:47:52
合計ジャッジ時間 4,096 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,164 KB
testcase_01 AC 127 ms
41,528 KB
testcase_02 AC 127 ms
41,372 KB
testcase_03 AC 120 ms
41,032 KB
testcase_04 AC 122 ms
41,308 KB
testcase_05 AC 119 ms
41,548 KB
testcase_06 AC 117 ms
41,392 KB
testcase_07 AC 116 ms
41,244 KB
testcase_08 AC 117 ms
41,004 KB
testcase_09 AC 116 ms
40,880 KB
testcase_10 AC 123 ms
41,300 KB
testcase_11 AC 122 ms
41,032 KB
testcase_12 AC 126 ms
41,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no682{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int a,b,i,s=0;
		a=stdIn.nextInt();
		b=stdIn.nextInt();
		for(i=a;i<=b;i++) if((a+b+i)%3==0) s++;
		System.out.print(s);
	}
}
0