結果
問題 | No.35 タイパー高橋 |
ユーザー | koari |
提出日時 | 2020-04-25 08:04:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 596 bytes |
コンパイル時間 | 1,820 ms |
コンパイル使用メモリ | 167,092 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 12:54:23 |
合計ジャッジ時間 | 2,028 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 3 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(ll (i)=0;(i)<(n);(i)++) #define repi(i,a,b) for(ll (i)=(a);(i)<(b);(i)++) #define SIZE_OF_ARRAY(array) (sizeof(array)/sizeof(array[0])) typedef long long ll; using namespace std; const ll mod = 1e9+7; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; int t; string s; int ans=0; int count=0; rep(i,n){ cin >> t >> s; int m = (12*t)/1000; if(m>=s.size()){ ans+=s.size(); }else{ ans+=m; count+=(s.size()-m); } } printf("%d %d\n",ans,count); return 0; }