QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#59528 | #5001. Correct | sinbad | AC ✓ | 4ms | 3632kb | C++ | 3.8kb | 2022-10-30 18:50:31 | 2022-10-30 18:50:34 |
Judging History
answer
#define LOCAL
#define _USE_MATH_DEFINES
#include <array>
#include <cassert>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <iomanip>
#include <string>
#include <sstream>
#include <vector>
#include <queue>
#include <stack>
#include <list>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <algorithm>
#include <complex>
#include <cmath>
#include <numeric>
#include <bitset>
#include <functional>
#include <random>
#include <ctime>
using namespace std;
template <typename A, typename B>
ostream& operator <<(ostream& out, const pair<A, B>& a) {
out << "(" << a.first << "," << a.second << ")";
return out;
}
template <typename T, size_t N>
ostream& operator <<(ostream& out, const array<T, N>& a) {
out << "["; bool first = true;
for (auto& v : a) { out << (first ? "" : ", "); out << v; first = 0;} out << "]";
return out;
}
template <typename T>
ostream& operator <<(ostream& out, const vector<T>& a) {
out << "["; bool first = true;
for (auto v : a) { out << (first ? "" : ", "); out << v; first = 0;} out << "]";
return out;
}
template <typename T, class Cmp>
ostream& operator <<(ostream& out, const set<T, Cmp>& a) {
out << "{"; bool first = true;
for (auto& v : a) { out << (first ? "" : ", "); out << v; first = 0;} out << "}";
return out;
}
template <typename T, class Cmp>
ostream& operator <<(ostream& out, const multiset<T, Cmp>& a) {
out << "{"; bool first = true;
for (auto& v : a) { out << (first ? "" : ", "); out << v; first = 0;} out << "}";
return out;
}
template <typename U, typename T, class Cmp>
ostream& operator <<(ostream& out, const map<U, T, Cmp>& a) {
out << "{"; bool first = true;
for (auto& p : a) { out << (first ? "" : ", "); out << p.first << ":" << p.second; first = 0;} out << "}";
return out;
}
#ifdef LOCAL
#define trace(...) __f(#__VA_ARGS__, __VA_ARGS__)
#else
#define trace(...) 42
#endif
template <typename Arg1>
void __f(const char* name, Arg1&& arg1){
cerr << name << ": " << arg1 << endl;
}
template <typename Arg1, typename... Args>
void __f(const char* names, Arg1&& arg1, Args&&... args){
const char* comma = strchr(names + 1, ',');
cerr.write(names, comma - names) << ": " << arg1 << " |";
__f(comma + 1, args...);
}
template <class T> auto vect(const T& v, int n) { return vector<T>(n, v); }
template <class T, class... D> auto vect(const T& v, int n, D... m) {
return vector<decltype(vect(v, m...))>(n, vect(v, m...));
}
using int64 = long long;
using int128 = __int128_t;
using ii = pair<int, int>;
#define SZ(x) (int)((x).size())
template <typename T> static constexpr T inf = numeric_limits<T>::max() / 2;
const int MOD = 1e9 + 7;
// const int MOD = 998244353;
mt19937_64 mrand(random_device{}());
int64 rnd(int64 x) { return mrand() % x; }
constexpr inline int lg2(int64 x) { return sizeof(int64) * 8 - 1 - __builtin_clzll(x); }
template <class T> void out(const vector<T>& a) { for (int i = 0; i < SZ(a); ++i) cout << a[i] << " \n"[i + 1 == SZ(a)]; }
template <class T> bool ckmin(T& a, const T& b) { return b < a ? a = b, 1 : 0; }
template <class T> bool ckmax(T& a, const T& b) { return a < b ? a = b, 1 : 0; }
template <class T> void dedup(vector<T>& v) { sort(v.begin(), v.end()); v.erase(unique(v.begin(), v.end()), v.end()); }
inline void add_mod(int& x, int y) { x += y; if (x >= MOD) x -= MOD; }
inline void sub_mod(int& x, int y) { x += MOD - y; if (x >= MOD) x -= MOD; }
inline int mod(int x) { return x >= MOD ? x - MOD : x; }
struct fast_ios {
fast_ios() {
cin.tie(nullptr);
ios::sync_with_stdio(false);
cout << fixed << setprecision(10);
};
} fast_ios_;
int main() {
int h, m;
cin >> h >> m;
h -= 9;
cout << (h * 60 + m) << '\n';
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 3500kb
input:
9 0
output:
0
result:
ok single line: '0'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3496kb
input:
11 59
output:
179
result:
ok single line: '179'
Test #3:
score: 0
Accepted
time: 2ms
memory: 3544kb
input:
9 0
output:
0
result:
ok single line: '0'
Test #4:
score: 0
Accepted
time: 2ms
memory: 3560kb
input:
9 1
output:
1
result:
ok single line: '1'
Test #5:
score: 0
Accepted
time: 1ms
memory: 3500kb
input:
9 2
output:
2
result:
ok single line: '2'
Test #6:
score: 0
Accepted
time: 4ms
memory: 3496kb
input:
9 3
output:
3
result:
ok single line: '3'
Test #7:
score: 0
Accepted
time: 2ms
memory: 3548kb
input:
9 4
output:
4
result:
ok single line: '4'
Test #8:
score: 0
Accepted
time: 1ms
memory: 3492kb
input:
9 5
output:
5
result:
ok single line: '5'
Test #9:
score: 0
Accepted
time: 2ms
memory: 3544kb
input:
9 6
output:
6
result:
ok single line: '6'
Test #10:
score: 0
Accepted
time: 3ms
memory: 3576kb
input:
9 7
output:
7
result:
ok single line: '7'
Test #11:
score: 0
Accepted
time: 4ms
memory: 3536kb
input:
9 8
output:
8
result:
ok single line: '8'
Test #12:
score: 0
Accepted
time: 2ms
memory: 3620kb
input:
9 9
output:
9
result:
ok single line: '9'
Test #13:
score: 0
Accepted
time: 2ms
memory: 3496kb
input:
9 10
output:
10
result:
ok single line: '10'
Test #14:
score: 0
Accepted
time: 2ms
memory: 3524kb
input:
9 11
output:
11
result:
ok single line: '11'
Test #15:
score: 0
Accepted
time: 1ms
memory: 3552kb
input:
9 12
output:
12
result:
ok single line: '12'
Test #16:
score: 0
Accepted
time: 2ms
memory: 3544kb
input:
9 13
output:
13
result:
ok single line: '13'
Test #17:
score: 0
Accepted
time: 2ms
memory: 3528kb
input:
9 14
output:
14
result:
ok single line: '14'
Test #18:
score: 0
Accepted
time: 2ms
memory: 3556kb
input:
9 15
output:
15
result:
ok single line: '15'
Test #19:
score: 0
Accepted
time: 2ms
memory: 3540kb
input:
9 16
output:
16
result:
ok single line: '16'
Test #20:
score: 0
Accepted
time: 2ms
memory: 3560kb
input:
9 17
output:
17
result:
ok single line: '17'
Test #21:
score: 0
Accepted
time: 2ms
memory: 3580kb
input:
9 18
output:
18
result:
ok single line: '18'
Test #22:
score: 0
Accepted
time: 1ms
memory: 3556kb
input:
9 19
output:
19
result:
ok single line: '19'
Test #23:
score: 0
Accepted
time: 0ms
memory: 3620kb
input:
9 20
output:
20
result:
ok single line: '20'
Test #24:
score: 0
Accepted
time: 0ms
memory: 3544kb
input:
9 21
output:
21
result:
ok single line: '21'
Test #25:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
9 22
output:
22
result:
ok single line: '22'
Test #26:
score: 0
Accepted
time: 2ms
memory: 3612kb
input:
9 23
output:
23
result:
ok single line: '23'
Test #27:
score: 0
Accepted
time: 1ms
memory: 3520kb
input:
9 24
output:
24
result:
ok single line: '24'
Test #28:
score: 0
Accepted
time: 2ms
memory: 3616kb
input:
9 25
output:
25
result:
ok single line: '25'
Test #29:
score: 0
Accepted
time: 0ms
memory: 3540kb
input:
9 26
output:
26
result:
ok single line: '26'
Test #30:
score: 0
Accepted
time: 3ms
memory: 3544kb
input:
9 27
output:
27
result:
ok single line: '27'
Test #31:
score: 0
Accepted
time: 2ms
memory: 3552kb
input:
9 28
output:
28
result:
ok single line: '28'
Test #32:
score: 0
Accepted
time: 2ms
memory: 3620kb
input:
9 29
output:
29
result:
ok single line: '29'
Test #33:
score: 0
Accepted
time: 2ms
memory: 3552kb
input:
9 30
output:
30
result:
ok single line: '30'
Test #34:
score: 0
Accepted
time: 2ms
memory: 3532kb
input:
9 31
output:
31
result:
ok single line: '31'
Test #35:
score: 0
Accepted
time: 1ms
memory: 3424kb
input:
9 32
output:
32
result:
ok single line: '32'
Test #36:
score: 0
Accepted
time: 0ms
memory: 3580kb
input:
9 33
output:
33
result:
ok single line: '33'
Test #37:
score: 0
Accepted
time: 2ms
memory: 3556kb
input:
9 34
output:
34
result:
ok single line: '34'
Test #38:
score: 0
Accepted
time: 2ms
memory: 3556kb
input:
9 35
output:
35
result:
ok single line: '35'
Test #39:
score: 0
Accepted
time: 2ms
memory: 3524kb
input:
9 36
output:
36
result:
ok single line: '36'
Test #40:
score: 0
Accepted
time: 0ms
memory: 3524kb
input:
9 37
output:
37
result:
ok single line: '37'
Test #41:
score: 0
Accepted
time: 2ms
memory: 3524kb
input:
9 38
output:
38
result:
ok single line: '38'
Test #42:
score: 0
Accepted
time: 1ms
memory: 3560kb
input:
9 39
output:
39
result:
ok single line: '39'
Test #43:
score: 0
Accepted
time: 2ms
memory: 3540kb
input:
9 40
output:
40
result:
ok single line: '40'
Test #44:
score: 0
Accepted
time: 2ms
memory: 3532kb
input:
9 41
output:
41
result:
ok single line: '41'
Test #45:
score: 0
Accepted
time: 2ms
memory: 3552kb
input:
9 42
output:
42
result:
ok single line: '42'
Test #46:
score: 0
Accepted
time: 2ms
memory: 3544kb
input:
9 43
output:
43
result:
ok single line: '43'
Test #47:
score: 0
Accepted
time: 2ms
memory: 3548kb
input:
9 44
output:
44
result:
ok single line: '44'
Test #48:
score: 0
Accepted
time: 2ms
memory: 3452kb
input:
9 45
output:
45
result:
ok single line: '45'
Test #49:
score: 0
Accepted
time: 2ms
memory: 3612kb
input:
9 46
output:
46
result:
ok single line: '46'
Test #50:
score: 0
Accepted
time: 2ms
memory: 3560kb
input:
9 47
output:
47
result:
ok single line: '47'
Test #51:
score: 0
Accepted
time: 2ms
memory: 3584kb
input:
9 48
output:
48
result:
ok single line: '48'
Test #52:
score: 0
Accepted
time: 1ms
memory: 3552kb
input:
9 49
output:
49
result:
ok single line: '49'
Test #53:
score: 0
Accepted
time: 2ms
memory: 3504kb
input:
9 50
output:
50
result:
ok single line: '50'
Test #54:
score: 0
Accepted
time: 2ms
memory: 3492kb
input:
9 51
output:
51
result:
ok single line: '51'
Test #55:
score: 0
Accepted
time: 3ms
memory: 3540kb
input:
9 52
output:
52
result:
ok single line: '52'
Test #56:
score: 0
Accepted
time: 1ms
memory: 3552kb
input:
9 53
output:
53
result:
ok single line: '53'
Test #57:
score: 0
Accepted
time: 2ms
memory: 3544kb
input:
9 54
output:
54
result:
ok single line: '54'
Test #58:
score: 0
Accepted
time: 2ms
memory: 3548kb
input:
9 55
output:
55
result:
ok single line: '55'
Test #59:
score: 0
Accepted
time: 2ms
memory: 3528kb
input:
9 56
output:
56
result:
ok single line: '56'
Test #60:
score: 0
Accepted
time: 0ms
memory: 3540kb
input:
9 57
output:
57
result:
ok single line: '57'
Test #61:
score: 0
Accepted
time: 0ms
memory: 3460kb
input:
9 58
output:
58
result:
ok single line: '58'
Test #62:
score: 0
Accepted
time: 2ms
memory: 3624kb
input:
9 59
output:
59
result:
ok single line: '59'
Test #63:
score: 0
Accepted
time: 0ms
memory: 3580kb
input:
10 0
output:
60
result:
ok single line: '60'
Test #64:
score: 0
Accepted
time: 1ms
memory: 3544kb
input:
10 1
output:
61
result:
ok single line: '61'
Test #65:
score: 0
Accepted
time: 2ms
memory: 3536kb
input:
10 2
output:
62
result:
ok single line: '62'
Test #66:
score: 0
Accepted
time: 2ms
memory: 3628kb
input:
10 3
output:
63
result:
ok single line: '63'
Test #67:
score: 0
Accepted
time: 2ms
memory: 3424kb
input:
10 4
output:
64
result:
ok single line: '64'
Test #68:
score: 0
Accepted
time: 1ms
memory: 3560kb
input:
10 5
output:
65
result:
ok single line: '65'
Test #69:
score: 0
Accepted
time: 2ms
memory: 3456kb
input:
10 6
output:
66
result:
ok single line: '66'
Test #70:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
10 7
output:
67
result:
ok single line: '67'
Test #71:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
10 8
output:
68
result:
ok single line: '68'
Test #72:
score: 0
Accepted
time: 2ms
memory: 3556kb
input:
10 9
output:
69
result:
ok single line: '69'
Test #73:
score: 0
Accepted
time: 2ms
memory: 3460kb
input:
10 10
output:
70
result:
ok single line: '70'
Test #74:
score: 0
Accepted
time: 0ms
memory: 3460kb
input:
10 11
output:
71
result:
ok single line: '71'
Test #75:
score: 0
Accepted
time: 2ms
memory: 3620kb
input:
10 12
output:
72
result:
ok single line: '72'
Test #76:
score: 0
Accepted
time: 2ms
memory: 3576kb
input:
10 13
output:
73
result:
ok single line: '73'
Test #77:
score: 0
Accepted
time: 1ms
memory: 3584kb
input:
10 14
output:
74
result:
ok single line: '74'
Test #78:
score: 0
Accepted
time: 2ms
memory: 3552kb
input:
10 15
output:
75
result:
ok single line: '75'
Test #79:
score: 0
Accepted
time: 0ms
memory: 3496kb
input:
10 16
output:
76
result:
ok single line: '76'
Test #80:
score: 0
Accepted
time: 1ms
memory: 3616kb
input:
10 17
output:
77
result:
ok single line: '77'
Test #81:
score: 0
Accepted
time: 2ms
memory: 3604kb
input:
10 18
output:
78
result:
ok single line: '78'
Test #82:
score: 0
Accepted
time: 2ms
memory: 3556kb
input:
10 19
output:
79
result:
ok single line: '79'
Test #83:
score: 0
Accepted
time: 1ms
memory: 3548kb
input:
10 20
output:
80
result:
ok single line: '80'
Test #84:
score: 0
Accepted
time: 1ms
memory: 3624kb
input:
10 21
output:
81
result:
ok single line: '81'
Test #85:
score: 0
Accepted
time: 3ms
memory: 3500kb
input:
10 22
output:
82
result:
ok single line: '82'
Test #86:
score: 0
Accepted
time: 2ms
memory: 3500kb
input:
10 23
output:
83
result:
ok single line: '83'
Test #87:
score: 0
Accepted
time: 2ms
memory: 3584kb
input:
10 24
output:
84
result:
ok single line: '84'
Test #88:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
10 25
output:
85
result:
ok single line: '85'
Test #89:
score: 0
Accepted
time: 3ms
memory: 3424kb
input:
10 26
output:
86
result:
ok single line: '86'
Test #90:
score: 0
Accepted
time: 4ms
memory: 3584kb
input:
10 27
output:
87
result:
ok single line: '87'
Test #91:
score: 0
Accepted
time: 3ms
memory: 3544kb
input:
10 28
output:
88
result:
ok single line: '88'
Test #92:
score: 0
Accepted
time: 1ms
memory: 3624kb
input:
10 29
output:
89
result:
ok single line: '89'
Test #93:
score: 0
Accepted
time: 4ms
memory: 3456kb
input:
10 30
output:
90
result:
ok single line: '90'
Test #94:
score: 0
Accepted
time: 2ms
memory: 3532kb
input:
10 31
output:
91
result:
ok single line: '91'
Test #95:
score: 0
Accepted
time: 2ms
memory: 3456kb
input:
10 32
output:
92
result:
ok single line: '92'
Test #96:
score: 0
Accepted
time: 0ms
memory: 3556kb
input:
10 33
output:
93
result:
ok single line: '93'
Test #97:
score: 0
Accepted
time: 2ms
memory: 3552kb
input:
10 34
output:
94
result:
ok single line: '94'
Test #98:
score: 0
Accepted
time: 2ms
memory: 3564kb
input:
10 35
output:
95
result:
ok single line: '95'
Test #99:
score: 0
Accepted
time: 2ms
memory: 3524kb
input:
10 36
output:
96
result:
ok single line: '96'
Test #100:
score: 0
Accepted
time: 1ms
memory: 3584kb
input:
10 37
output:
97
result:
ok single line: '97'
Test #101:
score: 0
Accepted
time: 2ms
memory: 3500kb
input:
10 38
output:
98
result:
ok single line: '98'
Test #102:
score: 0
Accepted
time: 2ms
memory: 3572kb
input:
10 39
output:
99
result:
ok single line: '99'
Test #103:
score: 0
Accepted
time: 2ms
memory: 3572kb
input:
10 40
output:
100
result:
ok single line: '100'
Test #104:
score: 0
Accepted
time: 0ms
memory: 3580kb
input:
10 41
output:
101
result:
ok single line: '101'
Test #105:
score: 0
Accepted
time: 2ms
memory: 3620kb
input:
10 42
output:
102
result:
ok single line: '102'
Test #106:
score: 0
Accepted
time: 2ms
memory: 3528kb
input:
10 43
output:
103
result:
ok single line: '103'
Test #107:
score: 0
Accepted
time: 0ms
memory: 3536kb
input:
10 44
output:
104
result:
ok single line: '104'
Test #108:
score: 0
Accepted
time: 2ms
memory: 3560kb
input:
10 45
output:
105
result:
ok single line: '105'
Test #109:
score: 0
Accepted
time: 2ms
memory: 3624kb
input:
10 46
output:
106
result:
ok single line: '106'
Test #110:
score: 0
Accepted
time: 2ms
memory: 3544kb
input:
10 47
output:
107
result:
ok single line: '107'
Test #111:
score: 0
Accepted
time: 3ms
memory: 3544kb
input:
10 48
output:
108
result:
ok single line: '108'
Test #112:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
10 49
output:
109
result:
ok single line: '109'
Test #113:
score: 0
Accepted
time: 2ms
memory: 3616kb
input:
10 50
output:
110
result:
ok single line: '110'
Test #114:
score: 0
Accepted
time: 2ms
memory: 3532kb
input:
10 51
output:
111
result:
ok single line: '111'
Test #115:
score: 0
Accepted
time: 1ms
memory: 3492kb
input:
10 52
output:
112
result:
ok single line: '112'
Test #116:
score: 0
Accepted
time: 0ms
memory: 3544kb
input:
10 53
output:
113
result:
ok single line: '113'
Test #117:
score: 0
Accepted
time: 2ms
memory: 3456kb
input:
10 54
output:
114
result:
ok single line: '114'
Test #118:
score: 0
Accepted
time: 3ms
memory: 3496kb
input:
10 55
output:
115
result:
ok single line: '115'
Test #119:
score: 0
Accepted
time: 1ms
memory: 3544kb
input:
10 56
output:
116
result:
ok single line: '116'
Test #120:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
10 57
output:
117
result:
ok single line: '117'
Test #121:
score: 0
Accepted
time: 2ms
memory: 3576kb
input:
10 58
output:
118
result:
ok single line: '118'
Test #122:
score: 0
Accepted
time: 2ms
memory: 3552kb
input:
10 59
output:
119
result:
ok single line: '119'
Test #123:
score: 0
Accepted
time: 1ms
memory: 3496kb
input:
11 0
output:
120
result:
ok single line: '120'
Test #124:
score: 0
Accepted
time: 1ms
memory: 3456kb
input:
11 1
output:
121
result:
ok single line: '121'
Test #125:
score: 0
Accepted
time: 2ms
memory: 3624kb
input:
11 2
output:
122
result:
ok single line: '122'
Test #126:
score: 0
Accepted
time: 3ms
memory: 3616kb
input:
11 3
output:
123
result:
ok single line: '123'
Test #127:
score: 0
Accepted
time: 1ms
memory: 3528kb
input:
11 4
output:
124
result:
ok single line: '124'
Test #128:
score: 0
Accepted
time: 2ms
memory: 3520kb
input:
11 5
output:
125
result:
ok single line: '125'
Test #129:
score: 0
Accepted
time: 2ms
memory: 3500kb
input:
11 6
output:
126
result:
ok single line: '126'
Test #130:
score: 0
Accepted
time: 2ms
memory: 3600kb
input:
11 7
output:
127
result:
ok single line: '127'
Test #131:
score: 0
Accepted
time: 3ms
memory: 3572kb
input:
11 8
output:
128
result:
ok single line: '128'
Test #132:
score: 0
Accepted
time: 4ms
memory: 3452kb
input:
11 9
output:
129
result:
ok single line: '129'
Test #133:
score: 0
Accepted
time: 3ms
memory: 3548kb
input:
11 10
output:
130
result:
ok single line: '130'
Test #134:
score: 0
Accepted
time: 2ms
memory: 3540kb
input:
11 11
output:
131
result:
ok single line: '131'
Test #135:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
11 12
output:
132
result:
ok single line: '132'
Test #136:
score: 0
Accepted
time: 1ms
memory: 3572kb
input:
11 13
output:
133
result:
ok single line: '133'
Test #137:
score: 0
Accepted
time: 4ms
memory: 3584kb
input:
11 14
output:
134
result:
ok single line: '134'
Test #138:
score: 0
Accepted
time: 4ms
memory: 3428kb
input:
11 15
output:
135
result:
ok single line: '135'
Test #139:
score: 0
Accepted
time: 4ms
memory: 3632kb
input:
11 16
output:
136
result:
ok single line: '136'
Test #140:
score: 0
Accepted
time: 3ms
memory: 3628kb
input:
11 17
output:
137
result:
ok single line: '137'
Test #141:
score: 0
Accepted
time: 2ms
memory: 3584kb
input:
11 18
output:
138
result:
ok single line: '138'
Test #142:
score: 0
Accepted
time: 2ms
memory: 3500kb
input:
11 19
output:
139
result:
ok single line: '139'
Test #143:
score: 0
Accepted
time: 3ms
memory: 3428kb
input:
11 20
output:
140
result:
ok single line: '140'
Test #144:
score: 0
Accepted
time: 3ms
memory: 3576kb
input:
11 21
output:
141
result:
ok single line: '141'
Test #145:
score: 0
Accepted
time: 3ms
memory: 3524kb
input:
11 22
output:
142
result:
ok single line: '142'
Test #146:
score: 0
Accepted
time: 2ms
memory: 3556kb
input:
11 23
output:
143
result:
ok single line: '143'
Test #147:
score: 0
Accepted
time: 2ms
memory: 3616kb
input:
11 24
output:
144
result:
ok single line: '144'
Test #148:
score: 0
Accepted
time: 3ms
memory: 3524kb
input:
11 25
output:
145
result:
ok single line: '145'
Test #149:
score: 0
Accepted
time: 1ms
memory: 3624kb
input:
11 26
output:
146
result:
ok single line: '146'
Test #150:
score: 0
Accepted
time: 0ms
memory: 3496kb
input:
11 27
output:
147
result:
ok single line: '147'
Test #151:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
11 28
output:
148
result:
ok single line: '148'
Test #152:
score: 0
Accepted
time: 2ms
memory: 3524kb
input:
11 29
output:
149
result:
ok single line: '149'
Test #153:
score: 0
Accepted
time: 0ms
memory: 3556kb
input:
11 30
output:
150
result:
ok single line: '150'
Test #154:
score: 0
Accepted
time: 0ms
memory: 3588kb
input:
11 31
output:
151
result:
ok single line: '151'
Test #155:
score: 0
Accepted
time: 2ms
memory: 3624kb
input:
11 32
output:
152
result:
ok single line: '152'
Test #156:
score: 0
Accepted
time: 0ms
memory: 3456kb
input:
11 33
output:
153
result:
ok single line: '153'
Test #157:
score: 0
Accepted
time: 2ms
memory: 3576kb
input:
11 34
output:
154
result:
ok single line: '154'
Test #158:
score: 0
Accepted
time: 0ms
memory: 3528kb
input:
11 35
output:
155
result:
ok single line: '155'
Test #159:
score: 0
Accepted
time: 2ms
memory: 3548kb
input:
11 36
output:
156
result:
ok single line: '156'
Test #160:
score: 0
Accepted
time: 2ms
memory: 3624kb
input:
11 37
output:
157
result:
ok single line: '157'
Test #161:
score: 0
Accepted
time: 1ms
memory: 3528kb
input:
11 38
output:
158
result:
ok single line: '158'
Test #162:
score: 0
Accepted
time: 2ms
memory: 3620kb
input:
11 39
output:
159
result:
ok single line: '159'
Test #163:
score: 0
Accepted
time: 3ms
memory: 3552kb
input:
11 40
output:
160
result:
ok single line: '160'
Test #164:
score: 0
Accepted
time: 2ms
memory: 3520kb
input:
11 41
output:
161
result:
ok single line: '161'
Test #165:
score: 0
Accepted
time: 3ms
memory: 3572kb
input:
11 42
output:
162
result:
ok single line: '162'
Test #166:
score: 0
Accepted
time: 0ms
memory: 3456kb
input:
11 43
output:
163
result:
ok single line: '163'
Test #167:
score: 0
Accepted
time: 1ms
memory: 3576kb
input:
11 44
output:
164
result:
ok single line: '164'
Test #168:
score: 0
Accepted
time: 2ms
memory: 3556kb
input:
11 45
output:
165
result:
ok single line: '165'
Test #169:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
11 46
output:
166
result:
ok single line: '166'
Test #170:
score: 0
Accepted
time: 1ms
memory: 3544kb
input:
11 47
output:
167
result:
ok single line: '167'
Test #171:
score: 0
Accepted
time: 1ms
memory: 3552kb
input:
11 48
output:
168
result:
ok single line: '168'
Test #172:
score: 0
Accepted
time: 3ms
memory: 3548kb
input:
11 49
output:
169
result:
ok single line: '169'
Test #173:
score: 0
Accepted
time: 2ms
memory: 3548kb
input:
11 50
output:
170
result:
ok single line: '170'
Test #174:
score: 0
Accepted
time: 2ms
memory: 3500kb
input:
11 51
output:
171
result:
ok single line: '171'
Test #175:
score: 0
Accepted
time: 2ms
memory: 3576kb
input:
11 52
output:
172
result:
ok single line: '172'
Test #176:
score: 0
Accepted
time: 2ms
memory: 3496kb
input:
11 53
output:
173
result:
ok single line: '173'
Test #177:
score: 0
Accepted
time: 1ms
memory: 3552kb
input:
11 54
output:
174
result:
ok single line: '174'
Test #178:
score: 0
Accepted
time: 0ms
memory: 3532kb
input:
11 55
output:
175
result:
ok single line: '175'
Test #179:
score: 0
Accepted
time: 2ms
memory: 3428kb
input:
11 56
output:
176
result:
ok single line: '176'
Test #180:
score: 0
Accepted
time: 2ms
memory: 3544kb
input:
11 57
output:
177
result:
ok single line: '177'
Test #181:
score: 0
Accepted
time: 2ms
memory: 3620kb
input:
11 58
output:
178
result:
ok single line: '178'
Test #182:
score: 0
Accepted
time: 0ms
memory: 3532kb
input:
11 59
output:
179
result:
ok single line: '179'