結果
問題 | No.54 Happy Hallowe'en |
ユーザー | ciel |
提出日時 | 2017-01-19 20:02:56 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 539 ms / 5,000 ms |
コード長 | 743 bytes |
コンパイル時間 | 2,257 ms |
コンパイル使用メモリ | 84,972 KB |
実行使用メモリ | 48,948 KB |
最終ジャッジ日時 | 2024-06-02 07:02:04 |
合計ジャッジ時間 | 7,792 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 109 ms
41,196 KB |
testcase_01 | AC | 111 ms
40,992 KB |
testcase_02 | AC | 102 ms
40,376 KB |
testcase_03 | AC | 110 ms
41,144 KB |
testcase_04 | AC | 298 ms
46,956 KB |
testcase_05 | AC | 319 ms
47,388 KB |
testcase_06 | AC | 354 ms
47,716 KB |
testcase_07 | AC | 415 ms
48,256 KB |
testcase_08 | AC | 482 ms
48,256 KB |
testcase_09 | AC | 539 ms
48,948 KB |
testcase_10 | AC | 119 ms
41,616 KB |
testcase_11 | AC | 119 ms
41,708 KB |
testcase_12 | AC | 481 ms
48,260 KB |
testcase_13 | AC | 505 ms
48,408 KB |
testcase_14 | AC | 104 ms
40,228 KB |
testcase_15 | AC | 113 ms
41,268 KB |
testcase_16 | AC | 130 ms
40,932 KB |
testcase_17 | AC | 141 ms
41,756 KB |
testcase_18 | AC | 120 ms
41,204 KB |
ソースコード
import java.util.*; import java.util.AbstractMap.SimpleEntry; class Main{ public static void main(String[]args){ Scanner cin=new Scanner(System.in); int n=cin.nextInt(),vmax=0,tmax=0; List<SimpleEntry<Integer,Integer>> v=new ArrayList<>(); for(int i=0;i<n;i++){ int a=cin.nextInt(),b=cin.nextInt(); v.add(new SimpleEntry<>(a,b)); if(vmax<a)vmax=a; if(tmax<b)tmax=b; } Collections.sort(v, (x,y) -> new Integer(x.getKey()+x.getValue()).compareTo(y.getKey()+y.getValue()) ); int[] bag=new int[tmax+vmax+1]; bag[0]=1; for(int i=0;i<n;i++){ for(int j=v.get(i).getValue()-1;j>=0;j--)bag[j+v.get(i).getKey()]|=bag[j]; } for(int i=tmax+vmax;i>=0;i--)if(bag[i]>0){ System.out.println(i); break; } } }