結果
問題 | No.505 カードの数式2 |
ユーザー | tenten |
提出日時 | 2021-11-02 11:01:16 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 54 ms / 2,000 ms |
コード長 | 2,033 bytes |
コンパイル時間 | 2,287 ms |
コンパイル使用メモリ | 77,588 KB |
実行使用メモリ | 37,096 KB |
最終ジャッジ日時 | 2024-10-11 09:18:49 |
合計ジャッジ時間 | 5,293 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
36,900 KB |
testcase_01 | AC | 54 ms
37,092 KB |
testcase_02 | AC | 52 ms
36,832 KB |
testcase_03 | AC | 54 ms
37,000 KB |
testcase_04 | AC | 52 ms
36,532 KB |
testcase_05 | AC | 54 ms
37,020 KB |
testcase_06 | AC | 53 ms
36,956 KB |
testcase_07 | AC | 53 ms
36,632 KB |
testcase_08 | AC | 53 ms
37,088 KB |
testcase_09 | AC | 53 ms
36,528 KB |
testcase_10 | AC | 54 ms
36,824 KB |
testcase_11 | AC | 53 ms
37,096 KB |
testcase_12 | AC | 53 ms
37,076 KB |
testcase_13 | AC | 53 ms
36,756 KB |
testcase_14 | AC | 52 ms
36,716 KB |
testcase_15 | AC | 54 ms
36,868 KB |
testcase_16 | AC | 53 ms
36,756 KB |
testcase_17 | AC | 53 ms
36,920 KB |
testcase_18 | AC | 53 ms
36,996 KB |
testcase_19 | AC | 52 ms
36,828 KB |
testcase_20 | AC | 53 ms
36,880 KB |
testcase_21 | AC | 52 ms
36,916 KB |
testcase_22 | AC | 53 ms
36,944 KB |
testcase_23 | AC | 52 ms
36,684 KB |
testcase_24 | AC | 53 ms
37,048 KB |
testcase_25 | AC | 52 ms
37,008 KB |
testcase_26 | AC | 52 ms
36,648 KB |
testcase_27 | AC | 54 ms
37,080 KB |
testcase_28 | AC | 53 ms
36,952 KB |
testcase_29 | AC | 52 ms
37,096 KB |
testcase_30 | AC | 53 ms
36,876 KB |
testcase_31 | AC | 52 ms
36,996 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); long max = sc.nextInt(); long min = max; for (int i = 1; i < n; i++) { long nextMax = Long.MIN_VALUE; long nextMin = Long.MAX_VALUE; int x = sc.nextInt(); nextMax = Math.max(nextMax, max * x); nextMax = Math.max(nextMax, max + x); nextMax = Math.max(nextMax, max - x); nextMax = Math.max(nextMax, min * x); nextMax = Math.max(nextMax, min + x); nextMax = Math.max(nextMax, min - x); nextMin = Math.min(nextMin, max * x); nextMin = Math.min(nextMin, max + x); nextMin = Math.min(nextMin, max - x); nextMin = Math.min(nextMin, min * x); nextMin = Math.min(nextMin, min + x); nextMin = Math.min(nextMin, min - x); if (x != 0) { nextMax = Math.max(nextMax, max / x); nextMax = Math.max(nextMax, min + x); nextMin = Math.min(nextMin, max / x); nextMin = Math.min(nextMin, min / x); } max = nextMax; min = nextMin; } System.out.println(max); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String nextLine() throws Exception { return br.readLine(); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }