結果

問題 No.682 Average
ユーザー youthfuldays072youthfuldays072
提出日時 2018-05-25 09:47:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 74,044 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-06-28 17:52:17
合計ジャッジ時間 4,474 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,592 KB
testcase_01 AC 119 ms
40,284 KB
testcase_02 AC 129 ms
41,292 KB
testcase_03 AC 125 ms
41,296 KB
testcase_04 AC 129 ms
41,512 KB
testcase_05 AC 131 ms
41,368 KB
testcase_06 AC 132 ms
41,420 KB
testcase_07 AC 126 ms
41,580 KB
testcase_08 AC 120 ms
40,144 KB
testcase_09 AC 128 ms
41,120 KB
testcase_10 AC 127 ms
41,244 KB
testcase_11 AC 129 ms
41,500 KB
testcase_12 AC 127 ms
41,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {


    public static void main(String[] args) {

    	Main main=new Main();

    	main.run();

    }

    void run() {
    	Scanner sc=new Scanner(System.in);

    	int A=sc.nextInt();
    	int B=sc.nextInt();

    	int counter=0;

    	for(int i=A;i<=B;i++) {

    		if((A+B+i)%3==0) {
    			counter++;
    		}

    	}

    	System.out.println(counter);

    }



}





0