結果
問題 | No.1905 PURE PHRASE |
ユーザー | ニックネーム |
提出日時 | 2022-04-15 22:00:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 347 bytes |
コンパイル時間 | 239 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 15,556 KB |
最終ジャッジ日時 | 2024-06-07 03:07:12 |
合計ジャッジ時間 | 3,774 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 57 ms
15,540 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 54 ms
15,424 KB |
testcase_13 | WA | - |
testcase_14 | AC | 56 ms
15,212 KB |
testcase_15 | WA | - |
testcase_16 | AC | 55 ms
14,948 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 56 ms
15,336 KB |
testcase_20 | AC | 55 ms
15,480 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 56 ms
15,488 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 57 ms
15,208 KB |
testcase_29 | WA | - |
testcase_30 | AC | 55 ms
15,084 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 56 ms
15,208 KB |
testcase_34 | AC | 56 ms
15,352 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 56 ms
15,340 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
ソースコード
from bisect import bisect_left n = int(input()) a = list(map(int, input().split())) c = 0 for i in range(1, n-1): if a[i-1] <= a[i] >= a[i+1]: c += 1 h = ["C4", "D4", "E4", "F4", "G4", "A4", "B4"] f = [261.6, 294.3, 327.0, 348.8, 392.4, 436.0, 490.5] i = bisect_left(f, c) if i > 5: i = 5 print(h[i] if abs(c-f[i]) < abs(c-f[i+1]) else h[i+1])