結果
問題 | No.1895 Mod 2 |
ユーザー | ぷら |
提出日時 | 2022-04-08 22:21:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 512 bytes |
コンパイル時間 | 2,333 ms |
コンパイル使用メモリ | 205,800 KB |
実行使用メモリ | 538,060 KB |
最終ジャッジ日時 | 2024-11-28 13:04:11 |
合計ジャッジ時間 | 42,151 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { vector<long long>tmp; for(long long i = 1; i*i <= 1000000000000000; i += 2) { long long j = i*i; while (j <= 1000000000000000) { tmp.push_back(j); j *= 2; } } sort(tmp.begin(),tmp.end()); int t; cin >> t; while (t--) { long long l,r; cin >> l >> r; cout << (upper_bound(tmp.begin(),tmp.end(),r)-lower_bound(tmp.begin(),tmp.end(),l))%2 << endl; } }