結果
問題 | No.35 タイパー高橋 |
ユーザー | @abcde |
提出日時 | 2019-02-05 00:01:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 556 bytes |
コンパイル時間 | 1,564 ms |
コンパイル使用メモリ | 159,484 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 20:44:02 |
合計ジャッジ時間 | 1,855 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { // 1. 入力情報取得. int N; cin >> N; // 2. 正解, 不正解 を集計. int correct = 0; int wrong = 0; for(int i = 0; i < N; i++){ int t; string s; cin >> t >> s; int maxType = floor(12.0 * t / 1000); int l = s.size(); if(l > maxType) correct += maxType, wrong += (l - maxType); else correct += l; } // 3. 出力. cout << correct << " " << wrong << endl; return 0; }