結果
問題 | No.682 Average |
ユーザー | kerotono |
提出日時 | 2018-05-11 22:23:41 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 156 bytes |
コンパイル時間 | 79 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-28 04:06:11 |
合計ジャッジ時間 | 1,006 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
ソースコード
#!python # -*- coding: utf-8 -*- A, B = map(int, input().split()) c = 0 for i in range(A, B + 1): if sum((A, B, i)) % 3 == 0: c += 1 print(c)