結果
| 問題 | No.773 コンテスト |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-03-25 16:01:55 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 349 bytes |
| 記録 | |
| コンパイル時間 | 166 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-10-08 09:37:24 |
| 合計ジャッジ時間 | 1,790 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 WA * 12 |
ソースコード
def main():
i = input()
lst = i.split(' ')
A,B = int(lst[0]),int(lst[1])
if A < 23 and 25 < B:
print(0)
if A < 23 and 22 < B < 26:
print(25-B)
if A < 23 and B < 23:
print (3)
if 22 < A < 26 and B < 26:
print (25-A)
if 26 < A :
print(3)
if __name__ == '__main__':
main()