結果
問題 | No.3 ビットすごろく |
ユーザー | toshiro_yanagi |
提出日時 | 2018-06-16 17:00:57 |
言語 | Nim (2.0.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 613 bytes |
コンパイル時間 | 3,336 ms |
コンパイル使用メモリ | 67,488 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 16:18:37 |
合計ジャッジ時間 | 14,018 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 78 ms
6,940 KB |
testcase_04 | AC | 9 ms
6,940 KB |
testcase_05 | AC | 329 ms
6,940 KB |
testcase_06 | AC | 91 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 310 ms
6,944 KB |
testcase_13 | AC | 56 ms
6,940 KB |
testcase_14 | AC | 691 ms
6,940 KB |
testcase_15 | AC | 1,172 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | AC | 705 ms
6,940 KB |
testcase_23 | AC | 1,200 ms
6,944 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 1 ms
6,944 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 2 ms
6,940 KB |
testcase_32 | WA | - |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 28) Warning: imported and not used: 'sets' [UnusedImport] /home/judge/data/code/Main.nim(1, 18) Warning: imported and not used: 'sequtils' [UnusedImport]
ソースコード
import strutils, sequtils, sets, algorithm proc trfm(i: int): int = i.toBin(16).count('1') let N = stdin.readLine.parseInt var arr, mini1, mini2 = newSeq[int](N) x = 1 mini1 = @[0] arr[0] = 1 proc go(x: int) = for i0 in mini1.sorted(cmp, Descending): var i = i0 while true: let pre = i i += (i + 1).trfm * x if x == 1: if i >= N: break else: if i <= 0: break if arr[i] == 0: arr[i] = arr[pre] + 1 mini2.add i if mini2.len == 0: echo -1; quit() swap(mini1, mini2) mini2 = @[] while arr[^1] == 0: go(x) x *= -1 echo arr[^1]