結果
問題 | No.1895 Mod 2 |
ユーザー | SidewaysOwl |
提出日時 | 2022-04-09 07:18:52 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 220 ms / 2,000 ms |
コード長 | 871 bytes |
コンパイル時間 | 265 ms |
コンパイル使用メモリ | 82,308 KB |
実行使用メモリ | 78,648 KB |
最終ジャッジ日時 | 2024-05-06 18:22:31 |
合計ジャッジ時間 | 3,447 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
54,072 KB |
testcase_01 | AC | 181 ms
77,376 KB |
testcase_02 | AC | 220 ms
78,648 KB |
testcase_03 | AC | 175 ms
76,928 KB |
testcase_04 | AC | 168 ms
77,516 KB |
testcase_05 | AC | 186 ms
77,052 KB |
testcase_06 | AC | 186 ms
77,388 KB |
testcase_07 | AC | 187 ms
77,068 KB |
testcase_08 | AC | 181 ms
77,228 KB |
testcase_09 | AC | 179 ms
77,128 KB |
testcase_10 | AC | 180 ms
77,040 KB |
testcase_11 | AC | 181 ms
77,180 KB |
ソースコード
for _ in range(int(input())): def bd(n,cul,ud): def j(x,y,ud): if ud == ">=": if x >= y:return True else:return False else: if x <= y: return True else:return False l = 0 r = 316227710 while r-l > 1: mid = (r+l) //2 if j(cul(mid),n,ud): if ud == ">=":r = mid else:l = mid else: if ud == ">=":l = mid else:r = mid if ud == ">=":return r else:return l ans = 0 l,r = map(int,input().split()) ans += bd(r,lambda x:x**2,"<=") - bd(l,lambda x:x**2,">=") + 1 ans += bd(r,lambda x:2*x**2,"<=") - bd(l,lambda x:2*x**2,">=") + 1 if ans & 1: print(1) else: print(0)