結果
問題 | No.1895 Mod 2 |
ユーザー | kakel-san |
提出日時 | 2023-11-19 19:33:14 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 747 ms / 2,000 ms |
コード長 | 1,364 bytes |
コンパイル時間 | 9,954 ms |
コンパイル使用メモリ | 167,400 KB |
実行使用メモリ | 412,448 KB |
最終ジャッジ日時 | 2024-09-26 06:21:46 |
合計ジャッジ時間 | 17,826 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 280 ms
253,472 KB |
testcase_01 | AC | 535 ms
256,684 KB |
testcase_02 | AC | 569 ms
256,700 KB |
testcase_03 | AC | 524 ms
256,700 KB |
testcase_04 | AC | 450 ms
256,552 KB |
testcase_05 | AC | 747 ms
256,832 KB |
testcase_06 | AC | 728 ms
257,212 KB |
testcase_07 | AC | 734 ms
257,212 KB |
testcase_08 | AC | 496 ms
256,316 KB |
testcase_09 | AC | 480 ms
256,580 KB |
testcase_10 | AC | 363 ms
255,804 KB |
testcase_11 | AC | 538 ms
412,448 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (88 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static long[] NList => ReadLine().Split().Select(long.Parse).ToArray(); public static void Main() { Solve(); } static void Solve() { var max = 1_000_000_000_000_000; var dlist = new List<long>(); for (var i = 1L; i * i <= max; i += 2) dlist.Add(i * i); var t = NN; var ans = new long[t]; for (var u = 0; u < t; ++u) { var c = NList; var (l, r) = (c[0], c[1]); ans[u] = (Count(r, dlist) - Count(l - 1, dlist)) % 2; } WriteLine(string.Join("\n", ans)); } static long Count(long val, List<long> list) { var org = val; var ans = 0L; while (val > 0) { ans += _Count(val, list); val >>= 1; } return ans; } static int _Count(long val, List<long> list) { if (val < list[0]) return 0; var ok = 0; var ng = list.Count; while (ng - ok > 1) { var mid = (ok + ng) / 2; if (list[mid] <= val) ok = mid; else ng = mid; } return ok + 1; } }