結果

問題 No.682 Average
ユーザー ohanaohana
提出日時 2023-10-27 17:23:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 99 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 53,900 KB
最終ジャッジ日時 2024-09-25 13:05:14
合計ジャッジ時間 1,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,056 KB
testcase_01 AC 39 ms
53,320 KB
testcase_02 AC 38 ms
52,428 KB
testcase_03 AC 38 ms
52,776 KB
testcase_04 AC 38 ms
53,900 KB
testcase_05 AC 38 ms
51,836 KB
testcase_06 AC 38 ms
51,696 KB
testcase_07 AC 38 ms
53,124 KB
testcase_08 AC 37 ms
52,596 KB
testcase_09 AC 38 ms
52,452 KB
testcase_10 AC 37 ms
53,688 KB
testcase_11 AC 37 ms
53,368 KB
testcase_12 AC 37 ms
53,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())

print(sum([1 for i in range(a, b + 1) if (a + b + i) % 3 == 0]))
0