# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
20434 |
2017-02-11T13:13:39 Z |
600913C0d3J4M(#54, sgc109) |
채점 시스템 (OJUZ11_judge) |
C++ |
|
0 ms |
0 KB |
// #include <bits/stdc++.h>
#include <vector>
#include <cstdio>
#include <iostream>
#include <cstring>
#include <queue>
#include <set>
#include <map>
#include <cmath>
#include <algorithm>
#include <utility>
#define REP(i,a,b) for(int i=a;i<=b;++i)
#define FOR(i,n) for(int i=0;i<n;++i)
#define pb push_back
#define all(v) (v).begin(),(v).end()
#define sz(v) ((int)(v).size())
#define inp1(a) scanf("%d",&a)
#define inp2(a,b) scanf("%d%d",&a,&b)
#define inp3(a,b,c) scanf("%d%d%d",&a,&b,&c)
#define inp4(a,b,c,d) scanf("%d%d%d%d",&a,&b,&c,&d)
#define inp5(a,b,c,d,e) scanf("%d%d%d%d%d",&a,&b,&c,&d,&e)z
using namespace std;
typedef long long ll;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef pair<int,int> pii;
typedef vector<pii> vii;
typedef vector<pll> vll;
typedef vector<vector<int> > vvi;
typedef pair<int,pair<int,int> > piii;
typedef vector<piii> viii;
const double EPSILON = 1e-9;
const double PI = acos(-1);
const int MOD = 1000000007;
const int INF = 0x3c3c3c3c;
const long long INFL = 0x3c3c3c3c3c3c3c3c;
const int MAX_N = 102;
int N;
string S;
ll T;
int main() {
inp1(N);
while(N--){
cin >> S >> T;
int i;
for(i=0;T>=stoll("1"+S);i++){
S="0"+S;
}
printf("%d\n",i);
}
return 0;
}
Compilation message
judge.cpp: In function 'int main()':
judge.cpp:48:25: error: 'stoll' was not declared in this scope
for(i=0;T>=stoll("1"+S);i++){
^
judge.cpp:44:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
inp1(N);
^
judge.cpp: At global scope:
judge.cpp:34:14: warning: 'PI' defined but not used [-Wunused-variable]
const double PI = acos(-1);
^