結果

問題 No.35 タイパー高橋
ユーザー kaito_tateyamakaito_tateyama
提出日時 2017-08-07 14:31:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 454 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 55,008 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-04-20 03:25:51
合計ジャッジ時間 765 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <string>

using namespace std;

int main() {


  int n,sum,fault;
  cin >> n;
  sum = 0;
  fault = 0;
  for (int i = 0; i < n; i++) {
    int t;
    string s;
    cin >> t >> s;
    int ctype,stype;
    ctype = (12 * t) / 1000;
    stype = s.size();
    if (ctype >= stype) {
      sum += stype;
    }else{
      sum += ctype;
      fault += stype - ctype;
    }
    
  }
  cout << sum << " " << fault << "\n";
  return 0;
}
0