結果
| 問題 | No.773 コンテスト |
| コンテスト | |
| ユーザー |
mossari_aozora
|
| 提出日時 | 2019-10-01 23:36:13 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 93 ms / 2,000 ms |
| コード長 | 242 bytes |
| 記録 | |
| コンパイル時間 | 307 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-04-19 07:28:50 |
| 合計ジャッジ時間 | 4,135 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
def solve():
line = input().split(" ")
tMin = int(line[0])
tMax = int(line[1])
cnt = 3
tList = list(range(tMin, tMax + 1))
for i in tList:
if (i in (23, 24, 25)):
cnt -= 1
print(cnt)
solve()
mossari_aozora