結果
問題 | No.2693 Sword |
ユーザー | fujita |
提出日時 | 2024-03-26 14:53:19 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,250 bytes |
コンパイル時間 | 3,491 ms |
コンパイル使用メモリ | 77,960 KB |
実行使用メモリ | 48,028 KB |
最終ジャッジ日時 | 2024-09-30 14:17:06 |
合計ジャッジ時間 | 8,161 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 119 ms
40,596 KB |
testcase_01 | AC | 116 ms
41,124 KB |
testcase_02 | AC | 115 ms
41,120 KB |
testcase_03 | RE | - |
testcase_04 | AC | 113 ms
41,024 KB |
testcase_05 | AC | 110 ms
41,188 KB |
testcase_06 | AC | 99 ms
40,008 KB |
testcase_07 | AC | 109 ms
40,908 KB |
testcase_08 | AC | 110 ms
41,044 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | AC | 111 ms
40,800 KB |
testcase_32 | RE | - |
ソースコード
import java.util.*; public class App { public static void main(String[] args){ Scanner sc = new Scanner(System.in); String[] temp = sc.nextLine().split(" "); int N = Integer.parseInt(temp[0]);//アイテムの個数 int P = Integer.parseInt(temp[1]);//剣の攻撃力 int K = Integer.parseInt(temp[2]);//装備するアイテム int T , B , _Max_Power = 0; String[] _attack_power = new String[N]; for(int i = 0; i < N; i++){ _attack_power[i] = sc.nextLine(); } for(int i = 0; i <= N - K; i++){ int _attack_power_count = P; for(int j = 0 + i; j < K + i; j++){ String[] item_type = _attack_power[j].split(" "); T = Integer.parseInt(item_type[0]); B = Integer.parseInt(item_type[1]); if(T == 1){ _attack_power_count += B; } else if(T == 2){ _attack_power_count = _attack_power_count * 2; } } if(_attack_power_count > _Max_Power){ _Max_Power = _attack_power_count; } } System.out.println(_Max_Power); } }