結果
問題 | No.825 賢いお買い物 |
ユーザー | むらため |
提出日時 | 2019-05-20 04:13:10 |
言語 | Nim (2.0.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,097 bytes |
コンパイル時間 | 2,465 ms |
コンパイル使用メモリ | 60,668 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 01:34:44 |
合計ジャッジ時間 | 3,304 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport]
ソースコード
import sequtils template times*(n:int,body) = (for _ in 0..<n: body) template `max=`*(x,y) = x = max(x,y) template `min=`*(x,y) = x = min(x,y) proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" ,discardable.} proc scan(): int = while true: let k = getchar_unlocked() if k < '0': return result = 10 * result + k.ord - '0'.ord proc solve(a,b,c:int):int = # A 10B -> A+B=C if a + b <= c : return -1 var ans = -1 for x in 1..a+b: for ia in 0..a: for ib in 0..b: # x円のものを ia+ib*10円で払う let g = ia + ib*10 - x if g < 0 : continue let res = (a-ia) + (b-ib) + (g mod 10) + (g div 10) if res != c : continue return x return -1 # const ABC = ( # proc():seq[seq[seq[int]]] = # result = newSeqWith(21,newSeqWith(21,newSeqWith(101,0))) # for a in 0..20: # for b in 0..20: # for c in 0..100: # result[a][b][c] = solve(a,b,c) # )() let a = scan() let b = scan() let c = scan() let ans = solve(a,b,c) if ans == -1 : echo "Impossible" else: echo ans