結果
問題 | No.116 門松列(1) |
ユーザー | koukonko |
提出日時 | 2015-12-11 22:38:06 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 57 ms / 5,000 ms |
コード長 | 1,159 bytes |
コンパイル時間 | 2,035 ms |
コンパイル使用メモリ | 77,552 KB |
実行使用メモリ | 37,152 KB |
最終ジャッジ日時 | 2024-06-25 01:12:46 |
合計ジャッジ時間 | 4,306 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
36,848 KB |
testcase_01 | AC | 56 ms
36,784 KB |
testcase_02 | AC | 54 ms
36,600 KB |
testcase_03 | AC | 54 ms
36,616 KB |
testcase_04 | AC | 53 ms
36,864 KB |
testcase_05 | AC | 53 ms
36,728 KB |
testcase_06 | AC | 55 ms
37,020 KB |
testcase_07 | AC | 57 ms
36,500 KB |
testcase_08 | AC | 55 ms
36,808 KB |
testcase_09 | AC | 53 ms
37,004 KB |
testcase_10 | AC | 56 ms
36,492 KB |
testcase_11 | AC | 55 ms
36,832 KB |
testcase_12 | AC | 53 ms
36,848 KB |
testcase_13 | AC | 55 ms
36,736 KB |
testcase_14 | AC | 54 ms
36,976 KB |
testcase_15 | AC | 54 ms
36,848 KB |
testcase_16 | AC | 53 ms
36,936 KB |
testcase_17 | AC | 55 ms
36,496 KB |
testcase_18 | AC | 53 ms
36,988 KB |
testcase_19 | AC | 52 ms
37,028 KB |
testcase_20 | AC | 57 ms
36,936 KB |
testcase_21 | AC | 55 ms
37,120 KB |
testcase_22 | AC | 54 ms
37,152 KB |
testcase_23 | AC | 52 ms
37,040 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) { BufferedReader buff = new BufferedReader(new InputStreamReader(System.in)); try { int count = Integer.parseInt(buff.readLine()); String[] box = buff.readLine().split(" "); int[] height = new int[count]; for(int i = 0; i < count; ++i){ height[i] = Integer.parseInt(box[i]); } int ans = 0; for(int i = 1; i < count-1; ++i){ int max = 0, min = 101; boolean flag = false; for(int j = -1; j < 2; ++j){ if(max == height[i+j] || min == height[i+j]){ flag = true; break; } if(max < height[i+j]){ max = height[i+j]; } if(min > height[i+j]){ min = height[i+j]; } } if(flag){ continue; } if(max != height[i-1] && min != height[i-1] || max != height[i+1] && min != height[i+1]){ ++ans; } } System.out.println(ans); } catch (NumberFormatException e) { e.getStackTrace(); } catch (IOException e) { e.getStackTrace(); } catch (Exception e) { e.getStackTrace(); } } }