More actions
imported>trailblaze No edit summary |
(Repair batch-0001 pages from live compare) |
||
| (One intermediate revision by one other user not shown) | |||
| Line 41: | Line 41: | ||
---- | ---- | ||
[[ACM_ICPC/2012스터디]] | [[ACM_ICPC/2012스터디]] | ||
Latest revision as of 23:56, 26 March 2026
#include<stdio.h>
#define swap(s, w) t = s, s = w, w = t;
long long int t;
long long int n, start1, end1, start2, end2;
long long int getStart(long long int start, int cnt)
{
long long int temp;
if(cnt % 2 == 1){
temp = start/9;
if(temp * 9 < start)temp++;
return temp;
}
else{
temp = start/2;
if(temp * 2 < start)temp++;
return temp;
}
}
int main(void)
{
int cnt;
while(scanf("%lld", &n) == 1){
cnt = 0;
start2 = n;
while(1)
{
cnt++;
end1 = start2 - 1;
start1 = getStart(start2, cnt);
if(start1 <= 1 && 1 <= end1)break;
swap(end1, end2);
swap(start1, start2);
}
if(cnt % 2 == 1)printf("Stan wins.\n");
else printf("Ollie wins.\n");
}
return 0;
}