結果
問題 | No.35 タイパー高橋 |
ユーザー | chacoder1 |
提出日時 | 2020-11-22 12:26:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 362 bytes |
コンパイル時間 | 2,305 ms |
コンパイル使用メモリ | 200,920 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-23 16:27:05 |
合計ジャッジ時間 | 2,494 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 | 4 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int correct_type=0; int incorrect_type=0; for(int i=0;i<n;i++){ int t; string s; cin>>t>>s; int len=s.length(); incorrect_type+=len-min(len,12*t/1000); correct_type+=min(len,12*t/1000); } cout<<correct_type<<" "<<incorrect_type<<endl; return 0; }