結果

問題 No.682 Average
ユーザー asahi32942398asahi32942398
提出日時 2018-05-11 22:26:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 2,620 ms
コンパイル使用メモリ 77,424 KB
実行使用メモリ 41,360 KB
最終ジャッジ日時 2024-06-28 04:08:21
合計ジャッジ時間 4,234 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,160 KB
testcase_01 AC 115 ms
41,076 KB
testcase_02 AC 129 ms
41,248 KB
testcase_03 AC 128 ms
40,884 KB
testcase_04 AC 125 ms
41,276 KB
testcase_05 AC 128 ms
41,352 KB
testcase_06 AC 123 ms
41,240 KB
testcase_07 AC 124 ms
41,076 KB
testcase_08 AC 124 ms
41,360 KB
testcase_09 AC 125 ms
41,248 KB
testcase_10 AC 127 ms
41,324 KB
testcase_11 AC 122 ms
39,960 KB
testcase_12 AC 127 ms
41,324 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 answer=0;
    for(int i=a;i<=b;i++){
      if((a+b+i)%3==0){
        answer++;
      }
    }
    System.out.println(answer);
  }
}
0