結果

問題 No.2894 Monotonic Intervals
ユーザー V_MelvilleV_Melville
提出日時 2024-09-20 22:15:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 346 bytes
コンパイル時間 2,924 ms
コンパイル使用メモリ 243,508 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-20 22:15:50
合計ジャッジ時間 3,698 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 7 ms
6,944 KB
testcase_08 WA -
testcase_09 AC 14 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 16 ms
6,940 KB
testcase_12 WA -
testcase_13 AC 13 ms
6,944 KB
testcase_14 AC 13 ms
6,944 KB
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)

using namespace std;

int main() {
    int n;
    string s;
    cin >> n >> s;
    
    int ans = 0;
    if (s[0] == '<') ans++;
    for (int i = 1; i < n; ++i) {
        if (s[i] == '<' and s[i-1] == '>') ans += 2;
    }
    
    cout << ans << '\n';
    
    return 0;
}
0