QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#426147#7276. A Light InconvenienceKevin5307100 ✓147ms3888kbC++231.4kb2024-05-30 21:38:542024-05-30 21:38:55

Judging History

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

  • [2024-05-30 21:38:55]
  • 评测
  • 测评结果:100
  • 用时:147ms
  • 内存:3888kb
  • [2024-05-30 21:38:54]
  • 提交

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=val+val+1;
		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: 3856kb

input:

\x03

output:


result:

ok Correct

Test #2:

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

input:


output:


result:

ok Correct

Test #3:

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

input:

Ĝ\x0e]B

output:


result:

ok Correct

Test #4:

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

input:


output:


result:

ok Correct

Test #5:

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

input:

Q

output:


result:

ok Correct

Test #6:

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

input:

\x03~

output:


result:

ok Correct

Test #7:

score: 5
Accepted
time: 92ms
memory: 3620kb

input:


output:


result:

ok Correct

Test #8:

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

input:

\x11!

output:


result:

ok Correct

Test #9:

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

input:

output:


result:

ok Correct

Test #10:

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

input:

2h\x0e

output:


result:

ok Correct

Test #11:

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

input:

\5

output:


result:

ok Correct

Subtask #2:

score: 5
Accepted

Test #12:

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

input:

\x03

output:


result:

ok Correct

Test #13:

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

input:

!\x02

output:


result:

ok Correct

Test #14:

score: 5
Accepted
time: 24ms
memory: 3620kb

input:

\x02

output:


result:

ok Correct

Test #15:

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

input:

|\x02

output:


result:

ok Correct

Test #16:

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

input:


output:


result:

ok Correct

Test #17:

score: 5
Accepted
time: 19ms
memory: 3560kb

input:


output:


result:

ok Correct

Test #18:

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

input:

\x13\x02

output:


result:

ok Correct

Test #19:

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

input:

^\x02

output:


result:

ok Correct

Test #20:

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

input:

\x01

output:


result:

ok Correct

Test #21:

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

input:

[\x02

output:


result:

ok Correct

Test #22:

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

input:

)\x02

output:


result:

ok Correct

Test #23:

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

input:


output:


result:

ok Correct

Subtask #3:

score: 10
Accepted

Test #24:

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

input:

\x03

output:


result:

ok Correct

Test #25:

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

input:

!\x02

output:


result:

ok Correct

Test #26:

score: 10
Accepted
time: 29ms
memory: 3860kb

input:

\x02

output:


result:

ok Correct

Test #27:

score: 10
Accepted
time: 29ms
memory: 3552kb

input:

|\x02

output:


result:

ok Correct

Test #28:

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

input:

\x1b\x0e

output:


result:

ok Correct

Test #29:

score: 10
Accepted
time: 2ms
memory: 3788kb

input:

C\x0e

output:


result:

ok Correct

Test #30:

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

input:

c\x0f

output:


result:

ok Correct

Test #31:

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

input:


output:


result:

ok Correct

Test #32:

score: 10
Accepted
time: 2ms
memory: 3504kb

input:

\x06

output:


result:

ok Correct

Test #33:

score: 10
Accepted
time: 30ms
memory: 3556kb

input:

q\x0c

output:


result:

ok Correct

Test #34:

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

input:

!\x11

output:


result:

ok Correct

Test #35:

score: 10
Accepted
time: 42ms
memory: 3620kb

input:


output:


result:

ok Correct

Test #36:

score: 10
Accepted
time: 4ms
memory: 3788kb

input:

\x03

output:


result:

ok Correct

Test #37:

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

input:

6\x04

output:


result:

ok Correct

Test #38:

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

input:


output:


result:

ok Correct

Test #39:

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

input:

\\x11

output:


result:

ok Correct

Test #40:

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

input:


output:


result:

ok Correct

Test #41:

score: 10
Accepted
time: 26ms
memory: 3620kb

input:


output:


result:

ok Correct

Test #42:

score: 10
Accepted
time: 45ms
memory: 3508kb

input:

\x13\x02

output:


result:

ok Correct

Test #43:

score: 10
Accepted
time: 79ms
memory: 3624kb

input:

^\x02

output:


result:

ok Correct

Test #44:

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

input:

\x01

output:


result:

ok Correct

Test #45:

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

input:

[\x02

output:


result:

ok Correct

Test #46:

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

input:

)\x02

output:


result:

ok Correct

Test #47:

score: 10
Accepted
time: 71ms
memory: 3664kb

input:


output:


result:

ok Correct

Subtask #4:

score: 5
Accepted

Test #48:

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

input:

\x03

output:


result:

ok Correct

Test #49:

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

input:

!\x02

output:


result:

ok Correct

Test #50:

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

input:

\x02

output:


result:

ok Correct

Test #51:

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

input:

|\x02

output:


result:

ok Correct

Test #52:

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

input:

\x1b\x0e

output:


result:

ok Correct

Test #53:

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

input:

C\x0e

output:


result:

ok Correct

Test #54:

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

input:

c\x0f

output:


result:

ok Correct

Test #55:

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

input:


output:


result:

ok Correct

Test #56:

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

input:

\x06

output:


result:

ok Correct

Test #57:

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

input:

q\x0c

output:


result:

ok Correct

Test #58:

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

input:

!\x11

output:


result:

ok Correct

Test #59:

score: 5
Accepted
time: 46ms
memory: 3824kb

input:


output:


result:

ok Correct

Test #60:

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

input:

\x03

output:


result:

ok Correct

Test #61:

score: 5
Accepted
time: 37ms
memory: 3560kb

input:

6\x04

output:


result:

ok Correct

Test #62:

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

input:


output:


result:

ok Correct

Test #63:

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

input:

\\x11

output:


result:

ok Correct

Test #64:

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

input:


output:


result:

ok Correct

Test #65:

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

input:

n1

output:


result:

ok Correct

Test #66:

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

input:

	T

output:


result:

ok Correct

Test #67:

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

input:

HW

output:


result:

ok Correct

Test #68:

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

input:

>P

output:


result:

ok Correct

Test #69:

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

input:

\x01

output:


result:

ok Correct

Test #70:

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

input:


output:


result:

ok Correct

Test #71:

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

input:

.O

output:


result:

ok Correct

Test #72:

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

input:

U\x1d

output:


result:

ok Correct

Test #73:

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

input:

\x18

output:


result:

ok Correct

Test #74:

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

input:


output:


result:

ok Correct

Test #75:

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

input:

\x084

output:


result:

ok Correct

Test #76:

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

input:


output:


result:

ok Correct

Test #77:

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

input:

B\x15

output:


result:

ok Correct

Test #78:

score: 5
Accepted
time: 37ms
memory: 3820kb

input:

\x13\x02

output:


result:

ok Correct

Test #79:

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

input:

^\x02

output:


result:

ok Correct

Test #80:

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

input:

\x01

output:


result:

ok Correct

Test #81:

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

input:

[\x02

output:


result:

ok Correct

Test #82:

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

input:

)\x02

output:


result:

ok Correct

Test #83:

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

input:


output:


result:

ok Correct

Subtask #5:

score: 10
Accepted

Test #84:

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

input:

\x03

output:


result:

ok Correct

Test #85:

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

input:

!\x02

output:


result:

ok Correct

Test #86:

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

input:

\x02

output:


result:

ok Correct

Test #87:

score: 10
Accepted
time: 46ms
memory: 3616kb

input:

|\x02

output:


result:

ok Correct

Test #88:

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

input:

\x1b\x0e

output:


result:

ok Correct

Test #89:

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

input:

C\x0e

output:


result:

ok Correct

Test #90:

score: 10
Accepted
time: 4ms
memory: 3624kb

input:

c\x0f

output:


result:

ok Correct

Test #91:

score: 10
Accepted
time: 53ms
memory: 3664kb

input:


output:


result:

ok Correct

Test #92:

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

input:

\x06

output:


result:

ok Correct

Test #93:

score: 10
Accepted
time: 67ms
memory: 3624kb

input:

q\x0c

output:


result:

ok Correct

Test #94:

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

input:

!\x11

output:


result:

ok Correct

Test #95:

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

input:


output:


result:

ok Correct

Test #96:

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

input:

\x03

output:


result:

ok Correct

Test #97:

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

input:

6\x04

output:


result:

ok Correct

Test #98:

score: 10
Accepted
time: 97ms
memory: 3824kb

input:


output:


result:

ok Correct

Test #99:

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

input:

\\x11

output:


result:

ok Correct

Test #100:

score: 10
Accepted
time: 52ms
memory: 3828kb

input:


output:


result:

ok Correct

Test #101:

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

input:

n1

output:


result:

ok Correct

Test #102:

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

input:

	T

output:


result:

ok Correct

Test #103:

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

input:

HW

output:


result:

ok Correct

Test #104:

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

input:

>P

output:


result:

ok Correct

Test #105:

score: 10
Accepted
time: 60ms
memory: 3624kb

input:

\x01

output:


result:

ok Correct

Test #106:

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

input:


output:


result:

ok Correct

Test #107:

score: 10
Accepted
time: 71ms
memory: 3560kb

input:

.O

output:


result:

ok Correct

Test #108:

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

input:

U\x1d

output:


result:

ok Correct

Test #109:

score: 10
Accepted
time: 31ms
memory: 3860kb

input:

\x18

output:


result:

ok Correct

Test #110:

score: 10
Accepted
time: 60ms
memory: 3624kb

input:


output:


result:

ok Correct

Test #111:

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

input:

\x084

output:


result:

ok Correct

Test #112:

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

input:


output:


result:

ok Correct

Test #113:

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

input:

B\x15

output:


result:

ok Correct

Test #114:

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

input:

\x0e)\x01

output:


result:

ok Correct

Test #115:

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

input:


output:


result:

ok Correct

Test #116:

score: 10
Accepted
time: 72ms
memory: 3660kb

input:


output:


result:

ok Correct

Test #117:

score: 10
Accepted
time: 34ms
memory: 3556kb

input:

\x13\x02

output:


result:

ok Correct

Test #118:

score: 10
Accepted
time: 79ms
memory: 3660kb

input:


output:


result:

ok Correct

Test #119:

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

input:

\x02

output:


result:

ok Correct

Test #120:

score: 10
Accepted
time: 72ms
memory: 3860kb

input:


output:


result:

ok Correct

Test #121:

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

input:

h

output:


result:

ok Correct

Test #122:

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

input:

\x04

output:


result:

ok Correct

Test #123:

score: 10
Accepted
time: 74ms
memory: 3664kb

input:


output:


result:

ok Correct

Test #124:

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

input:

XM\x01

output:


result:

ok Correct

Test #125:

score: 10
Accepted
time: 34ms
memory: 3856kb

input:

v

output:


result:

ok Correct

Test #126:

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

input:


output:


result:

ok Correct

Test #127:

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

input:

^\x02

output:


result:

ok Correct

Test #128:

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

input:

\x01

output:


result:

ok Correct

Test #129:

score: 10
Accepted
time: 44ms
memory: 3620kb

input:

[\x02

output:


result:

ok Correct

Test #130:

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

input:

)\x02

output:


result:

ok Correct

Test #131:

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

input:


output:


result:

ok Correct

Subtask #6:

score: 5
Accepted

Test #132:

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

input:

\x03

output:


result:

ok Correct

Test #133:

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

input:

!\x02

output:


result:

ok Correct

Test #134:

score: 5
Accepted
time: 28ms
memory: 3556kb

input:

\x02

output:


result:

ok Correct

Test #135:

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

input:

|\x02

output:


result:

ok Correct

Test #136:

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

input:

\x1b\x0e

output:


result:

ok Correct

Test #137:

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

input:

C\x0e

output:


result:

ok Correct

Test #138:

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

input:

c\x0f

output:


result:

ok Correct

Test #139:

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

input:


output:


result:

ok Correct

Test #140:

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

input:

\x06

output:


result:

ok Correct

Test #141:

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

input:

q\x0c

output:


result:

ok Correct

Test #142:

score: 5
Accepted
time: 49ms
memory: 3864kb

input:

!\x11

output:


result:

ok Correct

Test #143:

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

input:


output:


result:

ok Correct

Test #144:

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

input:

\x03

output:


result:

ok Correct

Test #145:

score: 5
Accepted
time: 54ms
memory: 3596kb

input:

6\x04

output:


result:

ok Correct

Test #146:

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

input:


output:


result:

ok Correct

Test #147:

score: 5
Accepted
time: 48ms
memory: 3448kb

input:

\\x11

output:


result:

ok Correct

Test #148:

score: 5
Accepted
time: 35ms
memory: 3576kb

input:


output:


result:

ok Correct

Test #149:

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

input:

n1

output:


result:

ok Correct

Test #150:

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

input:

	T

output:


result:

ok Correct

Test #151:

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

input:

HW

output:


result:

ok Correct

Test #152:

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

input:

>P

output:


result:

ok Correct

Test #153:

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

input:

\x01

output:


result:

ok Correct

Test #154:

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

input:


output:


result:

ok Correct

Test #155:

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

input:

.O

output:


result:

ok Correct

Test #156:

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

input:

U\x1d

output:


result:

ok Correct

Test #157:

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

input:

\x18

output:


result:

ok Correct

Test #158:

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

input:


output:


result:

ok Correct

Test #159:

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

input:

\x084

output:


result:

ok Correct

Test #160:

score: 5
Accepted
time: 31ms
memory: 3616kb

input:


output:


result:

ok Correct

Test #161:

score: 5
Accepted
time: 47ms
memory: 3548kb

input:

B\x15

output:


result:

ok Correct

Test #162:

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

input:

\x0e)\x01

output:


result:

ok Correct

Test #163:

score: 5
Accepted
time: 99ms
memory: 3564kb

input:


output:


result:

ok Correct

Test #164:

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

input:


output:


result:

ok Correct

Test #165:

score: 5
Accepted
time: 46ms
memory: 3560kb

input:

\x13\x02

output:


result:

ok Correct

Test #166:

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

input:


output:


result:

ok Correct

Test #167:

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

input:

\x02

output:


result:

ok Correct

Test #168:

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

input:


output:


result:

ok Correct

Test #169:

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

input:

h

output:


result:

ok Correct

Test #170:

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

input:

\x04

output:


result:

ok Correct

Test #171:

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

input:


output:


result:

ok Correct

Test #172:

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

input:

XM\x01

output:


result:

ok Correct

Test #173:

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

input:

v

output:


result:

ok Correct

Test #174:

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

input:


output:


result:

ok Correct

Test #175:

score: 5
Accepted
time: 31ms
memory: 3600kb

input:


output:


result:

ok Correct

Test #176:

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

input:

^\x02

output:


result:

ok Correct

Test #177:

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

input:


output:


result:

ok Correct

Test #178:

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

input:


output:


result:

ok Correct

Test #179:

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

input:

٨\x01

output:


result:

ok Correct

Test #180:

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

input:


output:


result:

ok Correct

Test #181:

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

input:

\x13

output:


result:

ok Correct

Test #182:

score: 5
Accepted
time: 38ms
memory: 3556kb

input:

Z3\x06

output:


result:

ok Correct

Test #183:

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

input:


output:


result:

ok Correct

Test #184:

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

input:

k_\x05

output:


result:

ok Correct

Test #185:

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

input:

o

output:


result:

ok Correct

Test #186:

score: 5
Accepted
time: 50ms
memory: 3828kb

input:


output:


result:

ok Correct

Test #187:

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

input:

\x01

output:


result:

ok Correct

Test #188:

score: 5
Accepted
time: 62ms
memory: 3820kb

input:


output:


result:

ok Correct

Test #189:

score: 5
Accepted
time: 25ms
memory: 3824kb

input:

[\x02

output:


result:

ok Correct

Test #190:

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

input:

)\x02

output:


result:

ok Correct

Test #191:

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

input:


output:


result:

ok Correct

Subtask #7:

score: 60
Accepted

Test #192:

score: 60
Accepted
time: 0ms
memory: 3628kb

input:

\x03

output:


result:

ok Correct

Test #193:

score: 60
Accepted
time: 104ms
memory: 3832kb

input:


output:


result:

ok Correct

Test #194:

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

input:


output:


result:

ok Correct

Test #195:

score: 60
Accepted
time: 49ms
memory: 3636kb

input:


output:


result:

ok Correct

Test #196:

score: 60
Accepted
time: 80ms
memory: 3644kb

input:


output:


result:

ok Correct

Test #197:

score: 60
Accepted
time: 83ms
memory: 3684kb

input:


output:


result:

ok Correct

Test #198:

score: 60
Accepted
time: 97ms
memory: 3640kb

input:

Z]

output:


result:

ok Correct

Test #199:

score: 60
Accepted
time: 130ms
memory: 3648kb

input:


output:


result:

ok Correct

Test #200:

score: 60
Accepted
time: 37ms
memory: 3640kb

input:


output:


result:

ok Correct

Test #201:

score: 60
Accepted
time: 116ms
memory: 3832kb

input:

\x01

output:


result:

ok Correct

Test #202:

score: 60
Accepted
time: 53ms
memory: 3588kb

input:


output:


result:

ok Correct

Test #203:

score: 60
Accepted
time: 62ms
memory: 3472kb

input:

{܈]xEc\x01

output:


result:

ok Correct

Test #204:

score: 60
Accepted
time: 60ms
memory: 3512kb

input:

Ĝ\x0e]B

output:


result:

ok Correct

Test #205:

score: 60
Accepted
time: 97ms
memory: 3652kb

input:

\x07]HbIJ\x18

output:


result:

ok Correct

Test #206:

score: 60
Accepted
time: 61ms
memory: 3712kb

input:


output:


result:

ok Correct

Test #207:

score: 60
Accepted
time: 106ms
memory: 3872kb

input:

7

output:


result:

ok Correct

Test #208:

score: 60
Accepted
time: 147ms
memory: 3804kb

input:


output:


result:

ok Correct

Test #209:

score: 60
Accepted
time: 75ms
memory: 3640kb

input:

3

output:


result:

ok Correct

Test #210:

score: 60
Accepted
time: 50ms
memory: 3672kb

input:

U&2

output:


result:

ok Correct

Test #211:

score: 60
Accepted
time: 52ms
memory: 3536kb

input:


output:


result:

ok Correct

Test #212:

score: 60
Accepted
time: 101ms
memory: 3620kb

input:

I

output:


result:

ok Correct

Test #213:

score: 60
Accepted
time: 25ms
memory: 3888kb

input:

ʫ

output:


result:

ok Correct

Test #214:

score: 60
Accepted
time: 113ms
memory: 3636kb

input:

k

output:


result:

ok Correct

Test #215:

score: 60
Accepted
time: 13ms
memory: 3504kb

input:


output:


result:

ok Correct

Test #216:

score: 60
Accepted
time: 79ms
memory: 3880kb

input:


output:


result:

ok Correct

Test #217:

score: 60
Accepted
time: 72ms
memory: 3876kb

input:


output:


result:

ok Correct

Test #218:

score: 60
Accepted
time: 65ms
memory: 3628kb

input:

i\x15ꭊ|\x01

output:


result:

ok Correct

Test #219:

score: 60
Accepted
time: 99ms
memory: 3652kb

input:

v

output:


result:

ok Correct

Test #220:

score: 60
Accepted
time: 75ms
memory: 3884kb

input:


output:


result:

ok Correct

Test #221:

score: 60
Accepted
time: 75ms
memory: 3852kb

input:


output:


result:

ok Correct

Test #222:

score: 60
Accepted
time: 101ms
memory: 3816kb

input:


output:


result:

ok Correct

Test #223:

score: 60
Accepted
time: 115ms
memory: 3644kb

input:


output:


result:

ok Correct

Test #224:

score: 60
Accepted
time: 84ms
memory: 3840kb

input:

YR?

output:


result:

ok Correct

Test #225:

score: 60
Accepted
time: 69ms
memory: 3564kb

input:


output:


result:

ok Correct

Test #226:

score: 60
Accepted
time: 0ms
memory: 3788kb

input:


output:


result:

ok Correct

Test #227:

score: 60
Accepted
time: 46ms
memory: 3528kb

input:


output:


result:

ok Correct

Test #228:

score: 60
Accepted
time: 67ms
memory: 3664kb

input:

\x13\x02

output:


result:

ok Correct

Test #229:

score: 60
Accepted
time: 82ms
memory: 3660kb

input:

^\x02

output:


result:

ok Correct

Test #230:

score: 60
Accepted
time: 3ms
memory: 3624kb

input:

\x01

output:


result:

ok Correct

Test #231:

score: 60
Accepted
time: 36ms
memory: 3856kb

input:

[\x02

output:


result:

ok Correct

Test #232:

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

input:

)\x02

output:


result:

ok Correct

Test #233:

score: 60
Accepted
time: 90ms
memory: 3624kb

input:


output:


result:

ok Correct

Test #234:

score: 60
Accepted
time: 54ms
memory: 3628kb

input:


output:


result:

ok Correct

Test #235:

score: 60
Accepted
time: 53ms
memory: 3824kb

input:

!\x02

output:


result:

ok Correct

Test #236:

score: 60
Accepted
time: 11ms
memory: 3592kb

input:

\x02

output:


result:

ok Correct

Test #237:

score: 60
Accepted
time: 51ms
memory: 3592kb

input:

|\x02

output:


result:

ok Correct

Test #238:

score: 60
Accepted
time: 0ms
memory: 3864kb

input:

\x1b\x0e

output:


result:

ok Correct

Test #239:

score: 60
Accepted
time: 0ms
memory: 3628kb

input:

C\x0e

output:


result:

ok Correct

Test #240:

score: 60
Accepted
time: 4ms
memory: 3624kb

input:

c\x0f

output:


result:

ok Correct

Test #241:

score: 60
Accepted
time: 63ms
memory: 3864kb

input:


output:


result:

ok Correct

Test #242:

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

input:

\x06

output:


result:

ok Correct

Test #243:

score: 60
Accepted
time: 45ms
memory: 3564kb

input:

q\x0c

output:


result:

ok Correct

Test #244:

score: 60
Accepted
time: 57ms
memory: 3628kb

input:

!\x11

output:


result:

ok Correct

Test #245:

score: 60
Accepted
time: 59ms
memory: 3624kb

input:

Q

output:


result:

ok Correct

Test #246:

score: 60
Accepted
time: 0ms
memory: 3624kb

input:

\x03

output:


result:

ok Correct

Test #247:

score: 60
Accepted
time: 68ms
memory: 3632kb

input:

6\x04

output:


result:

ok Correct

Test #248:

score: 60
Accepted
time: 53ms
memory: 3820kb

input:


output:


result:

ok Correct

Test #249:

score: 60
Accepted
time: 100ms
memory: 3504kb

input:

\\x11

output:


result:

ok Correct

Test #250:

score: 60
Accepted
time: 53ms
memory: 3788kb

input:


output:


result:

ok Correct

Test #251:

score: 60
Accepted
time: 3ms
memory: 3828kb

input:

n1

output:


result:

ok Correct

Test #252:

score: 60
Accepted
time: 9ms
memory: 3512kb

input:

	T

output:


result:

ok Correct

Test #253:

score: 60
Accepted
time: 9ms
memory: 3600kb

input:

HW

output:


result:

ok Correct

Test #254:

score: 60
Accepted
time: 51ms
memory: 3792kb

input:

>P

output:


result:

ok Correct

Test #255:

score: 60
Accepted
time: 55ms
memory: 3856kb

input:

\x01

output:


result:

ok Correct

Test #256:

score: 60
Accepted
time: 64ms
memory: 3568kb

input:

\x03~

output:


result:

ok Correct

Test #257:

score: 60
Accepted
time: 61ms
memory: 3664kb

input:

.O

output:


result:

ok Correct

Test #258:

score: 60
Accepted
time: 69ms
memory: 3560kb

input:

U\x1d

output:


result:

ok Correct

Test #259:

score: 60
Accepted
time: 53ms
memory: 3628kb

input:

\x18

output:


result:

ok Correct

Test #260:

score: 60
Accepted
time: 36ms
memory: 3664kb

input:


output:


result:

ok Correct

Test #261:

score: 60
Accepted
time: 54ms
memory: 3632kb

input:

\x084

output:


result:

ok Correct

Test #262:

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

input:


output:


result:

ok Correct

Test #263:

score: 60
Accepted
time: 69ms
memory: 3628kb

input:

B\x15

output:


result:

ok Correct

Test #264:

score: 60
Accepted
time: 83ms
memory: 3620kb

input:

\x0e)\x01

output:


result:

ok Correct

Test #265:

score: 60
Accepted
time: 81ms
memory: 3860kb

input:


output:


result:

ok Correct

Test #266:

score: 60
Accepted
time: 59ms
memory: 3620kb

input:


output:


result:

ok Correct

Test #267:

score: 60
Accepted
time: 89ms
memory: 3868kb

input:


output:


result:

ok Correct

Test #268:

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

input:


output:


result:

ok Correct

Test #269:

score: 60
Accepted
time: 83ms
memory: 3504kb

input:

\x02

output:


result:

ok Correct

Test #270:

score: 60
Accepted
time: 90ms
memory: 3628kb

input:


output:


result:

ok Correct

Test #271:

score: 60
Accepted
time: 77ms
memory: 3576kb

input:

h

output:


result:

ok Correct

Test #272:

score: 60
Accepted
time: 55ms
memory: 3596kb

input:

\x04

output:


result:

ok Correct

Test #273:

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

input:


output:


result:

ok Correct

Test #274:

score: 60
Accepted
time: 51ms
memory: 3564kb

input:

XM\x01

output:


result:

ok Correct

Test #275:

score: 60
Accepted
time: 46ms
memory: 3624kb

input:

v

output:


result:

ok Correct

Test #276:

score: 60
Accepted
time: 62ms
memory: 3860kb

input:


output:


result:

ok Correct

Test #277:

score: 60
Accepted
time: 125ms
memory: 3828kb

input:


output:


result:

ok Correct

Test #278:

score: 60
Accepted
time: 74ms
memory: 3660kb

input:

\x11!

output:


result:

ok Correct

Test #279:

score: 60
Accepted
time: 57ms
memory: 3628kb

input:


output:


result:

ok Correct

Test #280:

score: 60
Accepted
time: 52ms
memory: 3636kb

input:


output:


result:

ok Correct

Test #281:

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

input:

٨\x01

output:


result:

ok Correct

Test #282:

score: 60
Accepted
time: 82ms
memory: 3628kb

input:


output:


result:

ok Correct

Test #283:

score: 60
Accepted
time: 77ms
memory: 3572kb

input:

\x13

output:


result:

ok Correct

Test #284:

score: 60
Accepted
time: 70ms
memory: 3596kb

input:

Z3\x06

output:


result:

ok Correct

Test #285:

score: 60
Accepted
time: 62ms
memory: 3616kb

input:


output:


result:

ok Correct

Test #286:

score: 60
Accepted
time: 54ms
memory: 3564kb

input:

k_\x05

output:


result:

ok Correct

Test #287:

score: 60
Accepted
time: 57ms
memory: 3792kb

input:

o

output:


result:

ok Correct

Test #288:

score: 60
Accepted
time: 38ms
memory: 3632kb

input:


output:


result:

ok Correct

Test #289:

score: 60
Accepted
time: 54ms
memory: 3632kb

input:

output:


result:

ok Correct

Test #290:

score: 60
Accepted
time: 53ms
memory: 3616kb

input:


output:


result:

ok Correct

Test #291:

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

input:


output:


result:

ok Correct

Test #292:

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

input:

b

output:


result:

ok Correct

Test #293:

score: 60
Accepted
time: 84ms
memory: 3588kb

input:


output:


result:

ok Correct

Test #294:

score: 60
Accepted
time: 84ms
memory: 3644kb

input:


output:


result:

ok Correct

Test #295:

score: 60
Accepted
time: 110ms
memory: 3524kb

input:


output:


result:

ok Correct

Test #296:

score: 60
Accepted
time: 44ms
memory: 3520kb

input:

.B\x08

output:


result:

ok Correct

Test #297:

score: 60
Accepted
time: 95ms
memory: 3788kb

input:

\x01

output:


result:

ok Correct

Test #298:

score: 60
Accepted
time: 60ms
memory: 3676kb

input:

S\x15

output:


result:

ok Correct

Test #299:

score: 60
Accepted
time: 76ms
memory: 3588kb

input:

†\x05

output:


result:

ok Correct

Test #300:

score: 60
Accepted
time: 76ms
memory: 3808kb

input:

2h\x0e

output:


result:

ok Correct

Test #301:

score: 60
Accepted
time: 83ms
memory: 3580kb

input:


output:


result:

ok Correct

Test #302:

score: 60
Accepted
time: 69ms
memory: 3652kb

input:

\x0f	qh9y

output:


result:

ok Correct

Test #303:

score: 60
Accepted
time: 108ms
memory: 3632kb

input:

[\x1f

output:


result:

ok Correct

Test #304:

score: 60
Accepted
time: 102ms
memory: 3608kb

input:

™Ng)

output:


result:

ok Correct

Test #305:

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

input:

x

output:


result:

ok Correct

Test #306:

score: 60
Accepted
time: 58ms
memory: 3864kb

input:


output:


result:

ok Correct

Test #307:

score: 60
Accepted
time: 53ms
memory: 3864kb

input:


output:


result:

ok Correct

Test #308:

score: 60
Accepted
time: 81ms
memory: 3684kb

input:

\x15

output:


result:

ok Correct

Test #309:

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

input:

'Ψ0

output:


result:

ok Correct

Test #310:

score: 60
Accepted
time: 97ms
memory: 3840kb

input:

\x0f\x19

output:


result:

ok Correct

Test #311:

score: 60
Accepted
time: 63ms
memory: 3828kb

input:

\5

output:


result:

ok Correct

Test #312:

score: 60
Accepted
time: 79ms
memory: 3644kb

input:


output:


result:

ok Correct

Test #313:

score: 60
Accepted
time: 48ms
memory: 3632kb

input:

R

output:


result:

ok Correct

Test #314:

score: 60
Accepted
time: 85ms
memory: 3564kb

input:

\x0b$

output:


result:

ok Correct

Test #315:

score: 60
Accepted
time: 77ms
memory: 3580kb

input:


output:


result:

ok Correct

Test #316:

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

input:


output:


result:

ok Correct

Test #317:

score: 60
Accepted
time: 58ms
memory: 3656kb

input:


output:


result:

ok Correct

Test #318:

score: 60
Accepted
time: 51ms
memory: 3884kb

input:


output:


result:

ok Correct

Test #319:

score: 60
Accepted
time: 118ms
memory: 3840kb

input:


output:


result:

ok Correct

Test #320:

score: 60
Accepted
time: 118ms
memory: 3640kb

input:

.

output:


result:

ok Correct

Test #321:

score: 60
Accepted
time: 58ms
memory: 3868kb

input:

"zDA

output:


result:

ok Correct

Extra Test:

score: 0
Extra Test Passed