結果

問題 No.682 Average
ユーザー kappybarkappybar
提出日時 2020-05-06 14:58:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 514 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,432 KB
最終ジャッジ日時 2024-06-28 16:26:18
合計ジャッジ時間 8,017 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
44,432 KB
testcase_01 AC 507 ms
44,156 KB
testcase_02 AC 497 ms
44,164 KB
testcase_03 AC 489 ms
44,340 KB
testcase_04 AC 508 ms
44,292 KB
testcase_05 AC 506 ms
44,420 KB
testcase_06 AC 499 ms
44,304 KB
testcase_07 AC 514 ms
44,284 KB
testcase_08 AC 507 ms
44,036 KB
testcase_09 AC 488 ms
44,160 KB
testcase_10 AC 490 ms
44,288 KB
testcase_11 AC 489 ms
44,032 KB
testcase_12 AC 478 ms
44,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
a,b=map(int,input().split())
c=np.arange(a,b+1)
print(np.sum(np.where((a+b+c)%3==0,1,0)))
0