結果
問題 | No.638 Sum of "not power of 2" |
ユーザー | No |
提出日時 | 2018-01-27 02:06:51 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 22 ms / 1,000 ms |
コード長 | 1,250 bytes |
コンパイル時間 | 793 ms |
コンパイル使用メモリ | 114,816 KB |
実行使用メモリ | 26,636 KB |
最終ジャッジ日時 | 2024-06-09 13:31:09 |
合計ジャッジ時間 | 1,703 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
26,636 KB |
testcase_01 | AC | 21 ms
24,200 KB |
testcase_02 | AC | 20 ms
24,572 KB |
testcase_03 | AC | 20 ms
24,596 KB |
testcase_04 | AC | 21 ms
24,496 KB |
testcase_05 | AC | 21 ms
24,732 KB |
testcase_06 | AC | 20 ms
24,600 KB |
testcase_07 | AC | 21 ms
24,224 KB |
testcase_08 | AC | 21 ms
24,220 KB |
testcase_09 | AC | 22 ms
26,516 KB |
testcase_10 | AC | 22 ms
26,400 KB |
testcase_11 | AC | 21 ms
22,324 KB |
testcase_12 | AC | 21 ms
24,604 KB |
testcase_13 | AC | 22 ms
24,856 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; namespace y { class Program { static void Main(string[] args) { var n = long.Parse(Console.ReadLine()); long[] sq = { 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, 4194304, 8388608, 16777216, 33554432, 67108864, 134217728, 268435456, 536870912, 1073741824, 2147483648, 4294967296, 8589934592, 17179869184, 34359738368, 68719476736, 137438953472, 274877906944, 549755813888, 1099511627776, 2199023255552, 4398046511104, 8796093022208, 17592186044416, 35184372088832, 70368744177664, 140737488355328, 281474976710656, 562949953421312, 1125899906842624, 2251799813685248, 4503599627370496, 9007199254740992, 18014398509481984, 36028797018963968, 72057594037927936, 144115188075855872, 288230376151711744, 576460752303423488 }; for (long i = 2; i < 1500; i++) { long a = n - i; if (i > a) break; if (!sq.Contains(i) && !sq.Contains(a)) { Console.WriteLine("{0} {1}", i, a); return; } } Console.WriteLine(-1); } } }