結果

問題 No.682 Average
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-05-18 01:33:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 1,943 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-06-28 13:40:40
合計ジャッジ時間 4,332 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,936 KB
testcase_01 AC 129 ms
41,088 KB
testcase_02 AC 138 ms
41,340 KB
testcase_03 AC 118 ms
39,784 KB
testcase_04 AC 128 ms
41,380 KB
testcase_05 AC 133 ms
41,296 KB
testcase_06 AC 120 ms
39,796 KB
testcase_07 AC 130 ms
41,248 KB
testcase_08 AC 130 ms
41,076 KB
testcase_09 AC 127 ms
41,064 KB
testcase_10 AC 129 ms
41,204 KB
testcase_11 AC 130 ms
41,372 KB
testcase_12 AC 132 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.*;
import java.util.*;

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