結果

問題 No.638 Sum of "not power of 2"
ユーザー mencottonmencotton
提出日時 2018-01-26 22:28:26
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 730 ms
コンパイル使用メモリ 108,708 KB
実行使用メモリ 25,924 KB
最終ジャッジ日時 2024-06-09 13:23:20
合計ジャッジ時間 1,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
23,984 KB
testcase_01 AC 23 ms
23,608 KB
testcase_02 AC 21 ms
23,600 KB
testcase_03 AC 21 ms
21,556 KB
testcase_04 WA -
testcase_05 AC 22 ms
23,852 KB
testcase_06 AC 22 ms
25,924 KB
testcase_07 AC 22 ms
23,988 KB
testcase_08 AC 22 ms
23,496 KB
testcase_09 AC 24 ms
23,872 KB
testcase_10 AC 23 ms
23,608 KB
testcase_11 AC 22 ms
23,480 KB
testcase_12 AC 21 ms
25,800 KB
testcase_13 AC 22 ms
25,772 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace _638
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] a = new int[] { 3,5,6,7 };
            long n = long.Parse(Console.ReadLine());
            if (n < 8) Console.WriteLine(-1);
            else
            {
                int i = 0;
                for (; true; i++)
                {
                    long x = n - a[i];
                    while (x % 2 == 0) x /= 2;
                    if (x != 1) break;
                }
                Console.WriteLine(a[i] + " " + (n - a[i]));
            }
        }
    }
}
0