結果

問題 No.1298 OR XOR
ユーザー kakel-sankakel-san
提出日時 2024-09-01 16:29:24
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 605 bytes
コンパイル時間 10,223 ms
コンパイル使用メモリ 168,392 KB
実行使用メモリ 37,280 KB
最終ジャッジ日時 2024-09-01 16:29:39
合計ジャッジ時間 12,466 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
32,256 KB
testcase_01 AC 50 ms
36,000 KB
testcase_02 AC 49 ms
28,672 KB
testcase_03 AC 48 ms
28,544 KB
testcase_04 AC 48 ms
28,672 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (93 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/

ソースコード

diff #

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();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var b = 1;
        while (b * 2 <= n) b <<= 1;
        if (b == n) WriteLine("-1 -1 -1");
        else WriteLine($"{n} {b} {n ^ b}");
    }
}
0