結果
問題 | No.50 おもちゃ箱 |
ユーザー | むらため |
提出日時 | 2019-02-05 10:33:20 |
言語 | Nim (2.0.2) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 526 bytes |
コンパイル時間 | 3,590 ms |
コンパイル使用メモリ | 67,152 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-01 11:24:16 |
合計ジャッジ時間 | 4,912 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 6 ms
6,944 KB |
testcase_18 | AC | 3 ms
6,940 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 4 ms
6,944 KB |
testcase_22 | AC | 10 ms
6,944 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | AC | 1 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,944 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 24 ms
6,944 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 18 ms
6,944 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
コンパイルメッセージ
/home/judge/data/code/Main.nim(2, 10) Warning: Deprecated since v1.5; Use auto instead.; any is deprecated [Deprecated] /home/judge/data/code/Main.nim(3, 10) Warning: Deprecated since v1.5; Use auto instead.; any is deprecated [Deprecated]
ソースコード
import sequtils,strutils,algorithm proc r():any=stdin.readLine.parseInt proc R():any=stdin.readLine.split.map(parseInt).sorted(cmp,Descending) var N=r() K=1 shl N A=R() M=r() B=R() S=newSeq[int]K for n in 0..<K: for ia in 0..<N: if(n and(1 shl ia))==(1 shl ia):S[n] += A[ia] var ans=S.mapIt(B[0]-it>=0) if ans[K-1]:quit "1",0 for i,b in B[1..^1]: var n_ans = S.mapIt(false) for x,a in ans: if a: for y,s in S: if (x and y)==0 and b-s>=0:n_ans[x xor y]=true ans = n_ans if ans[K-1] : quit $(i+2),0 echo -1