結果

問題 No.35 タイパー高橋
ユーザー れいんれいん
提出日時 2024-11-20 14:27:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 5,000 ms
コード長 471 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 201,520 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-20 14:27:47
合計ジャッジ時間 2,779 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 5 ms
6,816 KB
testcase_03 AC 4 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int N;
    cin >> N;
    int miss = 0;
    long long total = 0;
    for (int i = 0; i < N; i++)
    {
        long long T;
        string S;
        cin >> T >> S;
        int S_N = S.size();
        total += S_N;
        long long type_count = (12 * T / 1000);
        if (type_count < S_N)
        {
            miss += S_N - type_count;
        }
    }
    cout << total - miss << " "
         << miss;
}
0