結果
問題 | No.4 おもりと天秤 |
ユーザー | むらため |
提出日時 | 2017-07-30 10:52:09 |
言語 | Nim (2.0.2) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 482 bytes |
コンパイル時間 | 901 ms |
コンパイル使用メモリ | 69,732 KB |
最終ジャッジ日時 | 2024-11-14 20:10:28 |
合計ジャッジ時間 | 1,261 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 50) Warning: Use the new 'sugar' module instead; future is deprecated [Deprecated] /home/judge/data/code/Main.nim(1, 62) Error: cannot open file: queues
ソースコード
import sequtils,strutils,strscans,algorithm,math,future,sets,queues,tables template get():string = stdin.readLine() template times(n:int,body:untyped): untyped = (for _ in 0..<n: body) let N = get().parseInt ws = get().split().map(parseInt) goal = ws.sum() div 2 var dp = newSeqWith(goal + 1,false) dp[0] = true for w in ws: for i in countdown(goal-w,0): if dp[i]: dp[i+w] = true if ws.sum() mod 2 == 0 and dp[goal]: echo "possible" else: echo "impossible"