結果
問題 | No.1463 Hungry Kanten |
ユーザー | bluemegane |
提出日時 | 2021-04-17 09:38:39 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,397 bytes |
コンパイル時間 | 3,589 ms |
コンパイル使用メモリ | 112,052 KB |
実行使用メモリ | 37,752 KB |
最終ジャッジ日時 | 2024-07-03 15:43:33 |
合計ジャッジ時間 | 4,398 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
28,004 KB |
testcase_01 | AC | 30 ms
26,216 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 100 ms
37,752 KB |
testcase_06 | AC | 30 ms
25,880 KB |
testcase_07 | AC | 30 ms
23,864 KB |
testcase_08 | AC | 30 ms
23,860 KB |
testcase_09 | AC | 30 ms
23,984 KB |
testcase_10 | AC | 30 ms
26,168 KB |
testcase_11 | AC | 31 ms
28,004 KB |
testcase_12 | AC | 30 ms
25,904 KB |
testcase_13 | AC | 31 ms
28,132 KB |
testcase_14 | AC | 31 ms
26,368 KB |
testcase_15 | AC | 29 ms
23,732 KB |
testcase_16 | AC | 32 ms
26,224 KB |
testcase_17 | AC | 39 ms
26,860 KB |
testcase_18 | AC | 32 ms
26,096 KB |
testcase_19 | AC | 66 ms
30,568 KB |
testcase_20 | AC | 76 ms
35,680 KB |
testcase_21 | AC | 30 ms
25,964 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System.Collections.Generic; using System.Linq; using System; public class Hello { static void Main() { string[] line = Console.ReadLine().Trim().Split(' '); var n = int.Parse(line[0]); var k = int.Parse(line[1]); line = Console.ReadLine().Trim().Split(' '); var a = Array.ConvertAll(line, int.Parse); getAn(n, k, a); } static void getAn(int n, int k, int[] a) { var hs = new HashSet<long>(); var imax = 1 << n; for (int i = 0; i < imax; i++) { if (countbit(i) >= k) { var s1 = 0; var s2 = 1L; for (int j = 0; j < n; j++) { if (((i >> j) & 1) == 1) { s1 += a[j]; s2 *= a[j]; } } hs.Add(s1); hs.Add(s2); } } Console.WriteLine(hs.Count()); } static int countbit(long bits) { bits = (bits & 0x55555555) + (bits >> 1 & 0x55555555); bits = (bits & 0x33333333) + (bits >> 2 & 0x33333333); bits = (bits & 0x0f0f0f0f) + (bits >> 4 & 0x0f0f0f0f); bits = (bits & 0x00ff00ff) + (bits >> 8 & 0x00ff00ff); return (int)(bits & 0x0000ffff) + (int)(bits >> 16 & 0x0000ffff); } }