結果
問題 | No.1869 Doubling? |
ユーザー | kakel-san |
提出日時 | 2023-11-23 23:06:43 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 630 bytes |
コンパイル時間 | 6,786 ms |
コンパイル使用メモリ | 167,888 KB |
実行使用メモリ | 184,636 KB |
最終ジャッジ日時 | 2024-09-26 08:22:53 |
合計ジャッジ時間 | 10,450 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
29,944 KB |
testcase_01 | AC | 51 ms
29,952 KB |
testcase_02 | AC | 54 ms
29,952 KB |
testcase_03 | AC | 51 ms
30,080 KB |
testcase_04 | AC | 53 ms
30,080 KB |
testcase_05 | AC | 52 ms
29,944 KB |
testcase_06 | AC | 54 ms
30,080 KB |
testcase_07 | AC | 54 ms
30,080 KB |
testcase_08 | AC | 53 ms
30,080 KB |
testcase_09 | WA | - |
testcase_10 | AC | 51 ms
29,816 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 52 ms
30,080 KB |
testcase_16 | AC | 50 ms
30,208 KB |
testcase_17 | AC | 51 ms
30,080 KB |
testcase_18 | AC | 51 ms
29,692 KB |
testcase_19 | AC | 50 ms
29,952 KB |
testcase_20 | AC | 50 ms
30,080 KB |
testcase_21 | AC | 51 ms
29,816 KB |
testcase_22 | AC | 49 ms
30,080 KB |
testcase_23 | AC | 50 ms
30,080 KB |
testcase_24 | AC | 51 ms
30,080 KB |
testcase_25 | AC | 51 ms
29,952 KB |
testcase_26 | AC | 51 ms
30,208 KB |
testcase_27 | AC | 51 ms
30,080 KB |
testcase_28 | AC | 51 ms
30,080 KB |
testcase_29 | AC | 50 ms
30,080 KB |
testcase_30 | AC | 50 ms
30,080 KB |
testcase_31 | AC | 49 ms
29,952 KB |
testcase_32 | AC | 51 ms
29,944 KB |
testcase_33 | AC | 50 ms
30,080 KB |
testcase_34 | AC | 52 ms
30,080 KB |
testcase_35 | AC | 51 ms
29,952 KB |
testcase_36 | AC | 50 ms
30,080 KB |
testcase_37 | AC | 49 ms
29,952 KB |
testcase_38 | AC | 49 ms
29,952 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 51 ms
30,080 KB |
testcase_43 | AC | 50 ms
29,952 KB |
testcase_44 | WA | - |
testcase_45 | AC | 49 ms
184,636 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (87 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 int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); public static void Main() { Solve(); } static void Solve() { var c = NList; var (n, m) = (c[0], c[1]); var rest = n; var ans = 0L; var cur = m; while (cur > 1) { --rest; ans += cur; cur = (cur + 1) / 2; } WriteLine(ans + rest); } }