結果
問題 | No.45 回転寿司 |
ユーザー | yun_app |
提出日時 | 2016-05-09 01:57:39 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 442 ms / 5,000 ms |
コード長 | 1,010 bytes |
コンパイル時間 | 2,609 ms |
コンパイル使用メモリ | 78,316 KB |
実行使用メモリ | 49,680 KB |
最終ジャッジ日時 | 2024-06-08 10:26:23 |
合計ジャッジ時間 | 9,369 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
42,616 KB |
testcase_01 | AC | 203 ms
47,860 KB |
testcase_02 | AC | 324 ms
48,428 KB |
testcase_03 | AC | 442 ms
48,868 KB |
testcase_04 | AC | 286 ms
49,596 KB |
testcase_05 | AC | 61 ms
37,164 KB |
testcase_06 | AC | 134 ms
45,056 KB |
testcase_07 | AC | 330 ms
48,372 KB |
testcase_08 | AC | 108 ms
42,276 KB |
testcase_09 | AC | 296 ms
48,168 KB |
testcase_10 | AC | 120 ms
42,420 KB |
testcase_11 | AC | 89 ms
41,732 KB |
testcase_12 | AC | 247 ms
47,504 KB |
testcase_13 | AC | 58 ms
36,736 KB |
testcase_14 | AC | 58 ms
37,032 KB |
testcase_15 | AC | 128 ms
44,464 KB |
testcase_16 | AC | 104 ms
41,244 KB |
testcase_17 | AC | 110 ms
43,032 KB |
testcase_18 | AC | 122 ms
42,448 KB |
testcase_19 | AC | 325 ms
49,316 KB |
testcase_20 | AC | 56 ms
36,888 KB |
testcase_21 | AC | 57 ms
37,164 KB |
testcase_22 | AC | 53 ms
36,936 KB |
testcase_23 | AC | 54 ms
36,600 KB |
testcase_24 | AC | 55 ms
37,136 KB |
testcase_25 | AC | 55 ms
37,204 KB |
testcase_26 | AC | 126 ms
45,812 KB |
testcase_27 | AC | 324 ms
49,296 KB |
testcase_28 | AC | 129 ms
44,924 KB |
testcase_29 | AC | 293 ms
49,628 KB |
testcase_30 | AC | 306 ms
49,680 KB |
testcase_31 | AC | 55 ms
36,848 KB |
testcase_32 | AC | 53 ms
36,652 KB |
testcase_33 | AC | 413 ms
48,640 KB |
ソースコード
import java.util.*; import java.lang.*; import java.io.*; class Ideone{ public static void main(String[] args) throws Exception{ // your code goes here BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); String[] prm = br.readLine().split(" "); ArrayList<Integer> dish = new ArrayList<Integer>(); for(String st:prm){ dish.add(Integer.parseInt(st)); } calc(0,0,dish); System.out.println(max); } private static int max = 0; private static HashMap<Integer,Integer> map = new HashMap<Integer,Integer>(); private static void calc(int ans,int idx,ArrayList<Integer> dish){ if(map.containsKey(idx) && map.get(idx) > ans){ return; } map.put(idx,ans); if(idx >= dish.size()){ max = Math.max(ans,max); return; } calc(ans+dish.get(idx),idx+2,dish); calc(ans,idx+1,dish); return; } }