結果
| 問題 |
No.1015 おつりは要らないです
|
| コンテスト | |
| ユーザー |
n_gojo
|
| 提出日時 | 2020-04-10 18:41:10 |
| 言語 | Java (openjdk 23) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,141 bytes |
| コンパイル時間 | 3,602 ms |
| コンパイル使用メモリ | 76,632 KB |
| 実行使用メモリ | 66,820 KB |
| 最終ジャッジ日時 | 2024-09-15 07:56:44 |
| 合計ジャッジ時間 | 9,088 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 6 TLE * 1 -- * 26 |
ソースコード
import java.util.*;
public class No1015 {
public static void main(String[] args) {
// 標準入力から読み込む際に、Scannerオブジェクトを使う。
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int sen = sc.nextInt();
int gosen = sc.nextInt();
int man = sc.nextInt();
List<Integer> en = new ArrayList<>();
while (sc.hasNext()) {
en.add(sc.nextInt());
}
Collections.sort(en, Collections.reverseOrder());
while (en.get(0) >= 0) {
int shop = en.get(0);
if (man > 0) {
shop -= 10000;
man--;
} else if (gosen > 0) {
shop -= 5000;
gosen--;
} else {
sen -= (shop+1)/1000 + 1;
if (sen < 0) {
System.out.println("No");
return;
}
shop = -1;
}
en.set(0, shop);
Collections.sort(en, Collections.reverseOrder());
}
System.out.println("Yes");
}
}
n_gojo