結果
問題 | No.35 タイパー高橋 |
ユーザー | toshiro_yanagi |
提出日時 | 2019-01-06 17:57:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 493 bytes |
コンパイル時間 | 643 ms |
コンパイル使用メモリ | 73,656 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-03 03:17:00 |
合計ジャッジ時間 | 1,035 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 5 ms
5,376 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; int main() { int n; cin >> n; vector<int> T(n); vector<string> S(n); int hit = 0; int miss = 0; for (int i = 0; i < n; i++) { cin >> T[i] >> S[i]; int s_length = (int)S[i].size(); int mini_hit = min(s_length, T[i] * 12 / 1000); miss += s_length - mini_hit; hit += mini_hit; } cout << hit << " " << miss << endl; }