結果
問題 | No.566 だいたい完全二分木 |
ユーザー | takeya_okino |
提出日時 | 2017-09-20 01:02:25 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 248 ms / 2,000 ms |
コード長 | 820 bytes |
コンパイル時間 | 2,742 ms |
コンパイル使用メモリ | 79,436 KB |
実行使用メモリ | 46,116 KB |
最終ジャッジ日時 | 2024-11-08 07:30:38 |
合計ジャッジ時間 | 5,353 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
41,696 KB |
testcase_01 | AC | 121 ms
41,252 KB |
testcase_02 | AC | 124 ms
41,456 KB |
testcase_03 | AC | 124 ms
41,200 KB |
testcase_04 | AC | 131 ms
41,104 KB |
testcase_05 | AC | 138 ms
41,520 KB |
testcase_06 | AC | 158 ms
41,424 KB |
testcase_07 | AC | 182 ms
41,804 KB |
testcase_08 | AC | 188 ms
41,796 KB |
testcase_09 | AC | 187 ms
42,144 KB |
testcase_10 | AC | 248 ms
46,116 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int k = sc.nextInt(); ArrayList<Integer> ans = func(k); for(int i = 0; i < ans.size(); i++) { System.out.print(ans.get(i)); System.out.print(" "); } } public static ArrayList func(int k) { ArrayList<Integer> tree = new ArrayList<Integer>(); if(k == 2) { tree.add(1); tree.add(2); tree.add(3); return tree; } else { ArrayList<Integer> test = func(k - 1); tree.add((int)Math.pow(2, k - 1)); for(int i = 0; i < test.size(); i++) { tree.add(test.get(i)); } for(int i = 0; i < test.size(); i++) { tree.add(test.get(i) + (int)Math.pow(2, k - 1)); } return tree; } } }