結果

問題 No.682 Average
ユーザー tsunabittsunabit
提出日時 2019-06-23 11:26:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 3,050 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 41,924 KB
最終ジャッジ日時 2024-06-07 23:18:52
合計ジャッジ時間 5,387 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,072 KB
testcase_01 AC 128 ms
40,748 KB
testcase_02 AC 126 ms
41,924 KB
testcase_03 AC 125 ms
41,008 KB
testcase_04 AC 119 ms
40,968 KB
testcase_05 AC 124 ms
41,808 KB
testcase_06 AC 124 ms
41,716 KB
testcase_07 AC 125 ms
41,820 KB
testcase_08 AC 123 ms
41,536 KB
testcase_09 AC 122 ms
41,628 KB
testcase_10 AC 123 ms
41,396 KB
testcase_11 AC 124 ms
41,224 KB
testcase_12 AC 104 ms
39,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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