結果

問題 No.682 Average
ユーザー tentententen
提出日時 2020-09-03 20:15:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 1,903 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-11-24 00:22:49
合計ジャッジ時間 4,247 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,084 KB
testcase_01 AC 127 ms
41,400 KB
testcase_02 AC 126 ms
41,492 KB
testcase_03 AC 126 ms
41,180 KB
testcase_04 AC 129 ms
40,956 KB
testcase_05 AC 127 ms
41,516 KB
testcase_06 AC 128 ms
41,304 KB
testcase_07 AC 120 ms
41,532 KB
testcase_08 AC 128 ms
41,116 KB
testcase_09 AC 127 ms
41,000 KB
testcase_10 AC 113 ms
41,404 KB
testcase_11 AC 126 ms
41,140 KB
testcase_12 AC 127 ms
41,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int a = sc.nextInt();
    	int b = sc.nextInt();
    	int count = 0;
    	for (int i = a; i <= b; i++) {
    	    if ((a + b + i) % 3 == 0) {
    	        count++;
    	    }
    	}
    	System.out.println(count);
	}
}
0