QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#426123#7276. A Light InconvenienceKevin530740 147ms3932kbC++231.4kb2024-05-30 21:12:192024-05-30 21:12:19

Judging History

你现在查看的是最新测评结果

  • [2024-05-30 21:12:19]
  • 评测
  • 测评结果:40
  • 用时:147ms
  • 内存:3932kb
  • [2024-05-30 21:12:19]
  • 提交

answer

//Author: Kevin
#include<bits/stdc++.h>
//#pragma GCC optimize("O2")
using namespace std;
#define ll long long
#define ull unsigned ll
#define pb emplace_back
#define mp make_pair
#define ALL(x) (x).begin(),(x).end()
#define rALL(x) (x).rbegin(),(x).rend()
#define srt(x) sort(ALL(x))
#define rev(x) reverse(ALL(x))
#define rsrt(x) sort(rALL(x))
#define sz(x) (int)(x.size())
#define inf 0x3f3f3f3f
#define pii pair<int,int>
#define lb(v,x) (int)(lower_bound(ALL(v),x)-v.begin())
#define ub(v,x) (int)(upper_bound(ALL(v),x)-v.begin())
#define uni(v) v.resize(unique(ALL(v))-v.begin())
#define longer __int128_t
void die(string S){puts(S.c_str());exit(0);}
const double Ratio=1.5;
ll N=1;
vector<ll> cur={1};
void prepare(){}
vector<ll> gen(vector<ll> cur,ll len)
{
	vector<pair<ll,ll>> ranges;
	for(auto x:cur)
		if(!sz(ranges)||ranges.back().second<x-1)
			ranges.pb(x,min(N,x+len));
		else
			ranges.back().second=min(N,x+len);
	vector<ll> res;
	res.pb(N);
	int p=sz(ranges)-1;
	while(res.back()>1)
	{
		ll val=N-res.back()+1;
		val=(ll)(ceil(val*Ratio));
		ll x=max(1ll,N-val+1);
		while(p&&ranges[p-1].second>=x) p--;
		x=max(x,ranges[p].first);
		res.pb(x);
	}
	rev(res);
	return res;
}
pair<ll,vector<ll>> leave(ll p)
{
	N-=p;
	while(cur.back()>N) cur.pop_back();
	cur=gen(cur,p);
	return mp(p,cur);
}
pair<ll,vector<ll>> join(ll p)
{
	N+=p;
	cur=gen(cur,p);
	return mp(p,cur);
}

詳細信息

Subtask #1:

score: 5
Accepted

Test #1:

score: 5
Accepted
time: 1ms
memory: 3844kb

input:

\x03

output:


result:

ok Correct

Test #2:

score: 5
Accepted
time: 104ms
memory: 3708kb

input:


output:


result:

ok Correct

Test #3:

score: 5
Accepted
time: 142ms
memory: 3636kb

input:

Ĝ\x0e]B

output:


result:

ok Correct

Test #4:

score: 5
Accepted
time: 115ms
memory: 3848kb

input:


output:


result:

ok Correct

Test #5:

score: 5
Accepted
time: 130ms
memory: 3792kb

input:

Q

output:


result:

ok Correct

Test #6:

score: 5
Accepted
time: 147ms
memory: 3712kb

input:

\x03~

output:


result:

ok Correct

Test #7:

score: 5
Accepted
time: 79ms
memory: 3640kb

input:


output:


result:

ok Correct

Test #8:

score: 5
Accepted
time: 113ms
memory: 3784kb

input:

\x11!

output:


result:

ok Correct

Test #9:

score: 5
Accepted
time: 79ms
memory: 3656kb

input:

output:


result:

ok Correct

Test #10:

score: 5
Accepted
time: 90ms
memory: 3588kb

input:

2h\x0e

output:


result:

ok Correct

Test #11:

score: 5
Accepted
time: 96ms
memory: 3860kb

input:

\5

output:


result:

ok Correct

Subtask #2:

score: 5
Accepted

Test #12:

score: 5
Accepted
time: 0ms
memory: 3684kb

input:

\x03

output:


result:

ok Correct

Test #13:

score: 5
Accepted
time: 51ms
memory: 3780kb

input:

!\x02

output:


result:

ok Correct

Test #14:

score: 5
Accepted
time: 23ms
memory: 3648kb

input:

\x02

output:


result:

ok Correct

Test #15:

score: 5
Accepted
time: 45ms
memory: 3920kb

input:

|\x02

output:


result:

ok Correct

Test #16:

score: 5
Accepted
time: 84ms
memory: 3848kb

input:


output:


result:

ok Correct

Test #17:

score: 5
Accepted
time: 16ms
memory: 3700kb

input:


output:


result:

ok Correct

Test #18:

score: 5
Accepted
time: 82ms
memory: 3708kb

input:

\x13\x02

output:


result:

ok Correct

Test #19:

score: 5
Accepted
time: 33ms
memory: 3704kb

input:

^\x02

output:


result:

ok Correct

Test #20:

score: 5
Accepted
time: 6ms
memory: 3568kb

input:

\x01

output:


result:

ok Correct

Test #21:

score: 5
Accepted
time: 70ms
memory: 3848kb

input:

[\x02

output:


result:

ok Correct

Test #22:

score: 5
Accepted
time: 4ms
memory: 3704kb

input:

)\x02

output:


result:

ok Correct

Test #23:

score: 5
Accepted
time: 60ms
memory: 3776kb

input:


output:


result:

ok Correct

Subtask #3:

score: 10
Accepted

Test #24:

score: 10
Accepted
time: 1ms
memory: 3568kb

input:

\x03

output:


result:

ok Correct

Test #25:

score: 10
Accepted
time: 48ms
memory: 3700kb

input:

!\x02

output:


result:

ok Correct

Test #26:

score: 10
Accepted
time: 10ms
memory: 3700kb

input:

\x02

output:


result:

ok Correct

Test #27:

score: 10
Accepted
time: 56ms
memory: 3692kb

input:

|\x02

output:


result:

ok Correct

Test #28:

score: 10
Accepted
time: 0ms
memory: 3644kb

input:

\x1b\x0e

output:


result:

ok Correct

Test #29:

score: 10
Accepted
time: 0ms
memory: 3848kb

input:

C\x0e

output:


result:

ok Correct

Test #30:

score: 10
Accepted
time: 3ms
memory: 3772kb

input:

c\x0f

output:


result:

ok Correct

Test #31:

score: 10
Accepted
time: 73ms
memory: 3920kb

input:


output:


result:

ok Correct

Test #32:

score: 10
Accepted
time: 3ms
memory: 3776kb

input:

\x06

output:


result:

ok Correct

Test #33:

score: 10
Accepted
time: 93ms
memory: 3636kb

input:

q\x0c

output:


result:

ok Correct

Test #34:

score: 10
Accepted
time: 38ms
memory: 3648kb

input:

!\x11

output:


result:

ok Correct

Test #35:

score: 10
Accepted
time: 48ms
memory: 3684kb

input:


output:


result:

ok Correct

Test #36:

score: 10
Accepted
time: 0ms
memory: 3780kb

input:

\x03

output:


result:

ok Correct

Test #37:

score: 10
Accepted
time: 59ms
memory: 3852kb

input:

6\x04

output:


result:

ok Correct

Test #38:

score: 10
Accepted
time: 121ms
memory: 3916kb

input:


output:


result:

ok Correct

Test #39:

score: 10
Accepted
time: 27ms
memory: 3696kb

input:

\\x11

output:


result:

ok Correct

Test #40:

score: 10
Accepted
time: 49ms
memory: 3632kb

input:


output:


result:

ok Correct

Test #41:

score: 10
Accepted
time: 14ms
memory: 3916kb

input:


output:


result:

ok Correct

Test #42:

score: 10
Accepted
time: 75ms
memory: 3708kb

input:

\x13\x02

output:


result:

ok Correct

Test #43:

score: 10
Accepted
time: 75ms
memory: 3708kb

input:

^\x02

output:


result:

ok Correct

Test #44:

score: 10
Accepted
time: 0ms
memory: 3688kb

input:

\x01

output:


result:

ok Correct

Test #45:

score: 10
Accepted
time: 62ms
memory: 3608kb

input:

[\x02

output:


result:

ok Correct

Test #46:

score: 10
Accepted
time: 7ms
memory: 3636kb

input:

)\x02

output:


result:

ok Correct

Test #47:

score: 10
Accepted
time: 49ms
memory: 3608kb

input:


output:


result:

ok Correct

Subtask #4:

score: 5
Accepted

Test #48:

score: 5
Accepted
time: 1ms
memory: 3708kb

input:

\x03

output:


result:

ok Correct

Test #49:

score: 5
Accepted
time: 57ms
memory: 3580kb

input:

!\x02

output:


result:

ok Correct

Test #50:

score: 5
Accepted
time: 15ms
memory: 3776kb

input:

\x02

output:


result:

ok Correct

Test #51:

score: 5
Accepted
time: 32ms
memory: 3928kb

input:

|\x02

output:


result:

ok Correct

Test #52:

score: 5
Accepted
time: 5ms
memory: 3780kb

input:

\x1b\x0e

output:


result:

ok Correct

Test #53:

score: 5
Accepted
time: 0ms
memory: 3664kb

input:

C\x0e

output:


result:

ok Correct

Test #54:

score: 5
Accepted
time: 0ms
memory: 3648kb

input:

c\x0f

output:


result:

ok Correct

Test #55:

score: 5
Accepted
time: 71ms
memory: 3652kb

input:


output:


result:

ok Correct

Test #56:

score: 5
Accepted
time: 21ms
memory: 3844kb

input:

\x06

output:


result:

ok Correct

Test #57:

score: 5
Accepted
time: 52ms
memory: 3700kb

input:

q\x0c

output:


result:

ok Correct

Test #58:

score: 5
Accepted
time: 58ms
memory: 3612kb

input:

!\x11

output:


result:

ok Correct

Test #59:

score: 5
Accepted
time: 58ms
memory: 3776kb

input:


output:


result:

ok Correct

Test #60:

score: 5
Accepted
time: 4ms
memory: 3700kb

input:

\x03

output:


result:

ok Correct

Test #61:

score: 5
Accepted
time: 55ms
memory: 3852kb

input:

6\x04

output:


result:

ok Correct

Test #62:

score: 5
Accepted
time: 111ms
memory: 3608kb

input:


output:


result:

ok Correct

Test #63:

score: 5
Accepted
time: 40ms
memory: 3848kb

input:

\\x11

output:


result:

ok Correct

Test #64:

score: 5
Accepted
time: 65ms
memory: 3836kb

input:


output:


result:

ok Correct

Test #65:

score: 5
Accepted
time: 0ms
memory: 3692kb

input:

n1

output:


result:

ok Correct

Test #66:

score: 5
Accepted
time: 33ms
memory: 3788kb

input:

	T

output:


result:

ok Correct

Test #67:

score: 5
Accepted
time: 3ms
memory: 3712kb

input:

HW

output:


result:

ok Correct

Test #68:

score: 5
Accepted
time: 116ms
memory: 3636kb

input:

>P

output:


result:

ok Correct

Test #69:

score: 5
Accepted
time: 86ms
memory: 3628kb

input:

\x01

output:


result:

ok Correct

Test #70:

score: 5
Accepted
time: 13ms
memory: 3608kb

input:


output:


result:

ok Correct

Test #71:

score: 5
Accepted
time: 91ms
memory: 3848kb

input:

.O

output:


result:

ok Correct

Test #72:

score: 5
Accepted
time: 60ms
memory: 3668kb

input:

U\x1d

output:


result:

ok Correct

Test #73:

score: 5
Accepted
time: 70ms
memory: 3628kb

input:

\x18

output:


result:

ok Correct

Test #74:

score: 5
Accepted
time: 87ms
memory: 3852kb

input:


output:


result:

ok Correct

Test #75:

score: 5
Accepted
time: 53ms
memory: 3856kb

input:

\x084

output:


result:

ok Correct

Test #76:

score: 5
Accepted
time: 97ms
memory: 3692kb

input:


output:


result:

ok Correct

Test #77:

score: 5
Accepted
time: 82ms
memory: 3664kb

input:

B\x15

output:


result:

ok Correct

Test #78:

score: 5
Accepted
time: 107ms
memory: 3668kb

input:

\x13\x02

output:


result:

ok Correct

Test #79:

score: 5
Accepted
time: 56ms
memory: 3780kb

input:

^\x02

output:


result:

ok Correct

Test #80:

score: 5
Accepted
time: 0ms
memory: 3696kb

input:

\x01

output:


result:

ok Correct

Test #81:

score: 5
Accepted
time: 32ms
memory: 3632kb

input:

[\x02

output:


result:

ok Correct

Test #82:

score: 5
Accepted
time: 7ms
memory: 3656kb

input:

)\x02

output:


result:

ok Correct

Test #83:

score: 5
Accepted
time: 70ms
memory: 3708kb

input:


output:


result:

ok Correct

Subtask #5:

score: 10
Accepted

Test #84:

score: 10
Accepted
time: 1ms
memory: 3656kb

input:

\x03

output:


result:

ok Correct

Test #85:

score: 10
Accepted
time: 85ms
memory: 3652kb

input:

!\x02

output:


result:

ok Correct

Test #86:

score: 10
Accepted
time: 15ms
memory: 3776kb

input:

\x02

output:


result:

ok Correct

Test #87:

score: 10
Accepted
time: 62ms
memory: 3704kb

input:

|\x02

output:


result:

ok Correct

Test #88:

score: 10
Accepted
time: 5ms
memory: 3628kb

input:

\x1b\x0e

output:


result:

ok Correct

Test #89:

score: 10
Accepted
time: 0ms
memory: 3848kb

input:

C\x0e

output:


result:

ok Correct

Test #90:

score: 10
Accepted
time: 0ms
memory: 3708kb

input:

c\x0f

output:


result:

ok Correct

Test #91:

score: 10
Accepted
time: 63ms
memory: 3852kb

input:


output:


result:

ok Correct

Test #92:

score: 10
Accepted
time: 11ms
memory: 3604kb

input:

\x06

output:


result:

ok Correct

Test #93:

score: 10
Accepted
time: 63ms
memory: 3628kb

input:

q\x0c

output:


result:

ok Correct

Test #94:

score: 10
Accepted
time: 70ms
memory: 3604kb

input:

!\x11

output:


result:

ok Correct

Test #95:

score: 10
Accepted
time: 56ms
memory: 3692kb

input:


output:


result:

ok Correct

Test #96:

score: 10
Accepted
time: 14ms
memory: 3700kb

input:

\x03

output:


result:

ok Correct

Test #97:

score: 10
Accepted
time: 114ms
memory: 3848kb

input:

6\x04

output:


result:

ok Correct

Test #98:

score: 10
Accepted
time: 64ms
memory: 3836kb

input:


output:


result:

ok Correct

Test #99:

score: 10
Accepted
time: 40ms
memory: 3712kb

input:

\\x11

output:


result:

ok Correct

Test #100:

score: 10
Accepted
time: 35ms
memory: 3840kb

input:


output:


result:

ok Correct

Test #101:

score: 10
Accepted
time: 0ms
memory: 3636kb

input:

n1

output:


result:

ok Correct

Test #102:

score: 10
Accepted
time: 13ms
memory: 3612kb

input:

	T

output:


result:

ok Correct

Test #103:

score: 10
Accepted
time: 12ms
memory: 3652kb

input:

HW

output:


result:

ok Correct

Test #104:

score: 10
Accepted
time: 83ms
memory: 3712kb

input:

>P

output:


result:

ok Correct

Test #105:

score: 10
Accepted
time: 51ms
memory: 3912kb

input:

\x01

output:


result:

ok Correct

Test #106:

score: 10
Accepted
time: 7ms
memory: 3608kb

input:


output:


result:

ok Correct

Test #107:

score: 10
Accepted
time: 57ms
memory: 3848kb

input:

.O

output:


result:

ok Correct

Test #108:

score: 10
Accepted
time: 81ms
memory: 3672kb

input:

U\x1d

output:


result:

ok Correct

Test #109:

score: 10
Accepted
time: 62ms
memory: 3844kb

input:

\x18

output:


result:

ok Correct

Test #110:

score: 10
Accepted
time: 70ms
memory: 3924kb

input:


output:


result:

ok Correct

Test #111:

score: 10
Accepted
time: 80ms
memory: 3576kb

input:

\x084

output:


result:

ok Correct

Test #112:

score: 10
Accepted
time: 93ms
memory: 3848kb

input:


output:


result:

ok Correct

Test #113:

score: 10
Accepted
time: 83ms
memory: 3648kb

input:

B\x15

output:


result:

ok Correct

Test #114:

score: 10
Accepted
time: 101ms
memory: 3852kb

input:

\x0e)\x01

output:


result:

ok Correct

Test #115:

score: 10
Accepted
time: 64ms
memory: 3672kb

input:


output:


result:

ok Correct

Test #116:

score: 10
Accepted
time: 70ms
memory: 3780kb

input:


output:


result:

ok Correct

Test #117:

score: 10
Accepted
time: 43ms
memory: 3912kb

input:

\x13\x02

output:


result:

ok Correct

Test #118:

score: 10
Accepted
time: 78ms
memory: 3712kb

input:


output:


result:

ok Correct

Test #119:

score: 10
Accepted
time: 102ms
memory: 3784kb

input:

\x02

output:


result:

ok Correct

Test #120:

score: 10
Accepted
time: 77ms
memory: 3920kb

input:


output:


result:

ok Correct

Test #121:

score: 10
Accepted
time: 86ms
memory: 3608kb

input:

h

output:


result:

ok Correct

Test #122:

score: 10
Accepted
time: 73ms
memory: 3604kb

input:

\x04

output:


result:

ok Correct

Test #123:

score: 10
Accepted
time: 48ms
memory: 3668kb

input:


output:


result:

ok Correct

Test #124:

score: 10
Accepted
time: 68ms
memory: 3852kb

input:

XM\x01

output:


result:

ok Correct

Test #125:

score: 10
Accepted
time: 78ms
memory: 3636kb

input:

v

output:


result:

ok Correct

Test #126:

score: 10
Accepted
time: 65ms
memory: 3572kb

input:


output:


result:

ok Correct

Test #127:

score: 10
Accepted
time: 55ms
memory: 3636kb

input:

^\x02

output:


result:

ok Correct

Test #128:

score: 10
Accepted
time: 0ms
memory: 3912kb

input:

\x01

output:


result:

ok Correct

Test #129:

score: 10
Accepted
time: 58ms
memory: 3844kb

input:

[\x02

output:


result:

ok Correct

Test #130:

score: 10
Accepted
time: 3ms
memory: 3600kb

input:

)\x02

output:


result:

ok Correct

Test #131:

score: 10
Accepted
time: 88ms
memory: 3852kb

input:


output:


result:

ok Correct

Subtask #6:

score: 5
Accepted

Test #132:

score: 5
Accepted
time: 1ms
memory: 3772kb

input:

\x03

output:


result:

ok Correct

Test #133:

score: 5
Accepted
time: 75ms
memory: 3776kb

input:

!\x02

output:


result:

ok Correct

Test #134:

score: 5
Accepted
time: 18ms
memory: 3772kb

input:

\x02

output:


result:

ok Correct

Test #135:

score: 5
Accepted
time: 69ms
memory: 3700kb

input:

|\x02

output:


result:

ok Correct

Test #136:

score: 5
Accepted
time: 5ms
memory: 3624kb

input:

\x1b\x0e

output:


result:

ok Correct

Test #137:

score: 5
Accepted
time: 4ms
memory: 3844kb

input:

C\x0e

output:


result:

ok Correct

Test #138:

score: 5
Accepted
time: 2ms
memory: 3704kb

input:

c\x0f

output:


result:

ok Correct

Test #139:

score: 5
Accepted
time: 103ms
memory: 3928kb

input:


output:


result:

ok Correct

Test #140:

score: 5
Accepted
time: 9ms
memory: 3660kb

input:

\x06

output:


result:

ok Correct

Test #141:

score: 5
Accepted
time: 75ms
memory: 3612kb

input:

q\x0c

output:


result:

ok Correct

Test #142:

score: 5
Accepted
time: 52ms
memory: 3696kb

input:

!\x11

output:


result:

ok Correct

Test #143:

score: 5
Accepted
time: 58ms
memory: 3700kb

input:


output:


result:

ok Correct

Test #144:

score: 5
Accepted
time: 9ms
memory: 3776kb

input:

\x03

output:


result:

ok Correct

Test #145:

score: 5
Accepted
time: 43ms
memory: 3784kb

input:

6\x04

output:


result:

ok Correct

Test #146:

score: 5
Accepted
time: 51ms
memory: 3780kb

input:


output:


result:

ok Correct

Test #147:

score: 5
Accepted
time: 33ms
memory: 3912kb

input:

\\x11

output:


result:

ok Correct

Test #148:

score: 5
Accepted
time: 72ms
memory: 3632kb

input:


output:


result:

ok Correct

Test #149:

score: 5
Accepted
time: 4ms
memory: 3912kb

input:

n1

output:


result:

ok Correct

Test #150:

score: 5
Accepted
time: 21ms
memory: 3696kb

input:

	T

output:


result:

ok Correct

Test #151:

score: 5
Accepted
time: 4ms
memory: 3608kb

input:

HW

output:


result:

ok Correct

Test #152:

score: 5
Accepted
time: 65ms
memory: 3712kb

input:

>P

output:


result:

ok Correct

Test #153:

score: 5
Accepted
time: 97ms
memory: 3700kb

input:

\x01

output:


result:

ok Correct

Test #154:

score: 5
Accepted
time: 15ms
memory: 3916kb

input:


output:


result:

ok Correct

Test #155:

score: 5
Accepted
time: 79ms
memory: 3692kb

input:

.O

output:


result:

ok Correct

Test #156:

score: 5
Accepted
time: 30ms
memory: 3704kb

input:

U\x1d

output:


result:

ok Correct

Test #157:

score: 5
Accepted
time: 81ms
memory: 3696kb

input:

\x18

output:


result:

ok Correct

Test #158:

score: 5
Accepted
time: 70ms
memory: 3704kb

input:


output:


result:

ok Correct

Test #159:

score: 5
Accepted
time: 43ms
memory: 3636kb

input:

\x084

output:


result:

ok Correct

Test #160:

score: 5
Accepted
time: 57ms
memory: 3916kb

input:


output:


result:

ok Correct

Test #161:

score: 5
Accepted
time: 76ms
memory: 3572kb

input:

B\x15

output:


result:

ok Correct

Test #162:

score: 5
Accepted
time: 136ms
memory: 3668kb

input:

\x0e)\x01

output:


result:

ok Correct

Test #163:

score: 5
Accepted
time: 81ms
memory: 3920kb

input:


output:


result:

ok Correct

Test #164:

score: 5
Accepted
time: 85ms
memory: 3924kb

input:


output:


result:

ok Correct

Test #165:

score: 5
Accepted
time: 87ms
memory: 3700kb

input:

\x13\x02

output:


result:

ok Correct

Test #166:

score: 5
Accepted
time: 68ms
memory: 3672kb

input:


output:


result:

ok Correct

Test #167:

score: 5
Accepted
time: 67ms
memory: 3696kb

input:

\x02

output:


result:

ok Correct

Test #168:

score: 5
Accepted
time: 116ms
memory: 3716kb

input:


output:


result:

ok Correct

Test #169:

score: 5
Accepted
time: 59ms
memory: 3920kb

input:

h

output:


result:

ok Correct

Test #170:

score: 5
Accepted
time: 82ms
memory: 3784kb

input:

\x04

output:


result:

ok Correct

Test #171:

score: 5
Accepted
time: 73ms
memory: 3924kb

input:


output:


result:

ok Correct

Test #172:

score: 5
Accepted
time: 76ms
memory: 3584kb

input:

XM\x01

output:


result:

ok Correct

Test #173:

score: 5
Accepted
time: 100ms
memory: 3848kb

input:

v

output:


result:

ok Correct

Test #174:

score: 5
Accepted
time: 66ms
memory: 3688kb

input:


output:


result:

ok Correct

Test #175:

score: 5
Accepted
time: 78ms
memory: 3780kb

input:


output:


result:

ok Correct

Test #176:

score: 5
Accepted
time: 63ms
memory: 3836kb

input:

^\x02

output:


result:

ok Correct

Test #177:

score: 5
Accepted
time: 57ms
memory: 3656kb

input:


output:


result:

ok Correct

Test #178:

score: 5
Accepted
time: 70ms
memory: 3856kb

input:


output:


result:

ok Correct

Test #179:

score: 5
Accepted
time: 104ms
memory: 3852kb

input:

٨\x01

output:


result:

ok Correct

Test #180:

score: 5
Accepted
time: 81ms
memory: 3912kb

input:


output:


result:

ok Correct

Test #181:

score: 5
Accepted
time: 80ms
memory: 3700kb

input:

\x13

output:


result:

ok Correct

Test #182:

score: 5
Accepted
time: 63ms
memory: 3920kb

input:

Z3\x06

output:


result:

ok Correct

Test #183:

score: 5
Accepted
time: 57ms
memory: 3704kb

input:


output:


result:

ok Correct

Test #184:

score: 5
Accepted
time: 88ms
memory: 3640kb

input:

k_\x05

output:


result:

ok Correct

Test #185:

score: 5
Accepted
time: 97ms
memory: 3700kb

input:

o

output:


result:

ok Correct

Test #186:

score: 5
Accepted
time: 66ms
memory: 3660kb

input:


output:


result:

ok Correct

Test #187:

score: 5
Accepted
time: 0ms
memory: 3776kb

input:

\x01

output:


result:

ok Correct

Test #188:

score: 5
Accepted
time: 51ms
memory: 3608kb

input:


output:


result:

ok Correct

Test #189:

score: 5
Accepted
time: 74ms
memory: 3780kb

input:

[\x02

output:


result:

ok Correct

Test #190:

score: 5
Accepted
time: 9ms
memory: 3848kb

input:

)\x02

output:


result:

ok Correct

Test #191:

score: 5
Accepted
time: 66ms
memory: 3840kb

input:


output:


result:

ok Correct

Subtask #7:

score: 0
Time Limit Exceeded

Test #192:

score: 60
Accepted
time: 1ms
memory: 3776kb

input:

\x03

output:


result:

ok Correct

Test #193:

score: 60
Accepted
time: 117ms
memory: 3584kb

input:


output:


result:

ok Correct

Test #194:

score: 60
Accepted
time: 86ms
memory: 3932kb

input:


output:


result:

ok Correct

Test #195:

score: 60
Accepted
time: 88ms
memory: 3688kb

input:


output:


result:

ok Correct

Test #196:

score: 0
Time Limit Exceeded

input:


output:


result: