結果
| 問題 | No.1895 Mod 2 |
| コンテスト | |
| ユーザー |
ntuda
|
| 提出日時 | 2025-11-25 13:40:49 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 205 ms / 2,000 ms |
| コード長 | 264 bytes |
| コンパイル時間 | 984 ms |
| コンパイル使用メモリ | 82,616 KB |
| 実行使用メモリ | 78,888 KB |
| 最終ジャッジ日時 | 2025-11-25 13:40:53 |
| 合計ジャッジ時間 | 3,795 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 11 |
ソースコード
from math import isqrt
def calc(x,b):
a = isqrt(x)
if a * a == x:
a += b
return a
for _ in range(int(input())):
l,r = map(int,input().split())
ans = calc(r,0) - calc(l,-1)
ans += calc(r//2,0) - calc(-(-l//2),-1)
print(ans % 2)
ntuda