結果
問題 | No.1829 Möbius Tunnelling |
ユーザー |
![]() |
提出日時 | 2022-02-04 21:30:26 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 780 bytes |
コンパイル時間 | 520 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 52,224 KB |
最終ジャッジ日時 | 2024-06-11 11:29:19 |
合計ジャッジ時間 | 2,319 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
import sys #input = sys.stdin.readline #文字列につけてはダメ input = sys.stdin.buffer.readline #文字列につけてはダメ #sys.setrecursionlimit(1000000) #import bisect #import itertools #import random #from heapq import heapify, heappop, heappush #from collections import defaultdict #from collections import deque #import copy #import math #from functools import lru_cache #@lru_cache(maxsize=None) #MOD = pow(10,9) + 7 #MOD = 998244353 #dx = [1,0,-1,0] #dy = [0,1,0,-1] def main(): N = int(input()) a,b,c = map(int,input().split()) c += N a-=1; b-=1; c -= 1 if a <= c <= a+N-1 and b < a: print('Yes') elif a + N+1 <= c < 2*N and a < b: print('Yes') else: print('No') if __name__ == '__main__': main()