Posted: Fri Aug 05, 2011 2:37 pm
Aside from the header that isAMindForeverVoyaging wrote:Except that your code really is Cavrrobot wrote:well, I think I'm one of the first solving it with c++
Aside from the header that isAMindForeverVoyaging wrote:Except that your code really is Cavrrobot wrote:well, I think I'm one of the first solving it with c++
I guess they intended to write <stdio.h>.CodeX wrote:Aside from the header that is
I just tried to compile avrrobot's code with gcc and I get linker errors. ("undefined reference to")CodeX wrote: Funnily enough though I think that code works on GCC because it coerces printf from the standard libraries even though it isn't explicitly told to do so
Code: Select all
int chartoint(char ch) {
ch = ch - 48;
return int(ch);
}
int main() {
char buff1 = '0';
char buff2 = '0';
char ch;
int ans;
cin.get(ch);
while (ch != '\n') {
if (isdigit(ch)) {
ans += chartoint(ch);
}
else if (ch == 'x') {
ans += chartoint(buff1) + chartoint(buff2);
cin.get(ch);
continue;
}
else {}
buff2 = buff1;
buff1 = ch;
cin.get(ch);
}
cout << endl << ans;
cin.get();
return 0;
}
Code: Select all
!/usr/bin/python
import sys,io
def calculate (s):
l = list(s)
sum = 0
i = 0
while i < len(l):
if l[i] == 'x':
del l[i]
i -= 2
else:
print l[i]
sum += int(l[i])
i += 1
return sum
s = '93752xxx746x27x1754xx90x93xxxxx238x44x75xx08750912738x8461x8759383xx328x4x4935903x6x5550360535004x0xx945958961296x267x8842xxx5x6xx61x4x48482x80xxx83316843x7x4x83x9521731xxx25x51xx457x6x5x9698222x771237745034x5133592x27xx8x87xx35221x36x0x50x23x7x63x998418xx'
print calculate(s)
Code: Select all
001^<83*5*:57* ?1^<86*-2v1+2v2^+1^<47* ?049+4*-g2^+3^+1v1+1v049+3*-gp!
Code: Select all
67*9*5-4*P
Code: Select all
namespace Xe
{
class Program
{
static void Main(string[] args)
{
StringBuilder input = new StringBuilder("93752xxx746x27x1754xx90x93xxxxx238x44x75xx08750912738x8461x8759383xx328x4x4935903x6x5550360535004x0xx945958961296x267x8842xxx5x6xx61x4x48482x80xxx83316843x7x4x83x9521731xxx25x51xx457x6x5x9698222x771237745034x5133592x27xx8x87xx35221x36x0x50x23x7x63x998418xx");
//StringBuilder input = new StringBuilder("93752xxx"); // testing
int sum = 0;
for (int i = 0; i < input.Length; i++)
{
if (input[i] == 'x')
{
input.Remove(i,1);
i-=3;
}
else
{
sum += (Convert.ToInt16(input[i]) - 48);
}
}
Console.WriteLine(sum);
Console.ReadKey();
}
}
}
Adding enough +++++ and a p at the end of the line.:%s/x/1^1^/g
Reminds me of thisCodeX wrote:To make up for that the smallest code possible, at least as far as I have figured at the moment, is:Code: Select all
67*9*5-4*P
Code: Select all
s='...'
sum=0
i=0
while i < len(s):
if s[i].isdigit():
sum += int(s[i])
i+=1
elif s[i] == 'x':
s = s[0:i]+s[i+1:len(s)]
i-=2
print sum
Code: Select all
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
void main()
{
char str[] = "93752xxx746x27x1754xx90x93xxxxx238x44x75xx08750912738x8461x8759383xx328x4x4935903x6x5550360535004x0xx945958961296x267x8842xxx5x6xx61x4x48482x80xxx83316843x7x4x83x9521731xxx25x51xx457x6x5x9698222x771237745034x5133592x27xx8x87xx35221x36x0x50x23x7x63x998418xx";
int len = strlen(str);
int *flag = new int[len];
int i=0;
int sum = 0;
memset(flag, 0, len*sizeof(int));
while( i<len )
{
if (flag[i])
{
i++;
continue;
}
else if (str[i]>='0' && str[i]<='9')
{
sum += str[i]-'0';
i++;
}
else if (str[i]=='x')
{
flag[i] = 1;
i--;
while(flag[i]) i--;
i--;
while(flag[i]) i--;
}
}
printf("%d\n", sum);
}