結果
| 問題 |
No.35 タイパー高橋
|
| コンテスト | |
| ユーザー |
focus
|
| 提出日時 | 2018-01-30 17:15:03 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 343 bytes |
| コンパイル時間 | 632 ms |
| コンパイル使用メモリ | 63,864 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-29 21:39:55 |
| 合計ジャッジ時間 | 1,136 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 4 |
ソースコード
#include<iostream>
#include<vector>
#include<algorithm>
#include<cstdio>
#include<cmath>
using namespace std;
int main(){
string s;
long long N,n,num,sum=0;
cin >> N;
while(N--){
cin >> n >> s;
num = ((n-1)/1000*12)+1;
if((s.size()-num)>0) sum+=(s.size()-num);
}
cout << sum;
return 0;
}
focus