結果
| 問題 | No.773 コンテスト |
| コンテスト | |
| ユーザー |
fV9TwBhUoa9S3eV
|
| 提出日時 | 2019-09-26 08:04:53 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 355 bytes |
| 記録 | |
| コンパイル時間 | 397 ms |
| コンパイル使用メモリ | 21,340 KB |
| 実行使用メモリ | 15,788 KB |
| 最終ジャッジ日時 | 2026-09-03 01:42:53 |
| 合計ジャッジ時間 | 4,661 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 18 WA * 3 |
ソースコード
# No.773 コンテスト
a, b = [int(i) for i in input().split()]
if a > 25 or b < 23:
perticipate = 3
elif a <= 23 and b >= 25 :
perticipate = 0
elif a < 23 and 23 <= b <= 25:
perticipate = 25 - b
elif 23 <= a <= 25 and 23 <= b <= 25:
perticipate = 3 - (b - a)
elif 23 <= a <= 25 and b > 25:
perticipate = a - 23
print(perticipate)
fV9TwBhUoa9S3eV