Search found 2 matches

by raiku
Tue Apr 20, 2004 4:40 am
Forum: Volume 2 (200-299)
Topic: 209 - Triangular Vertices
Replies: 51
Views: 11895

209 - Triangular Vertices

Hi!

I've got a question about problem 209. A polygon with side length 0 is permitted? I mean, is 1 1 1 a valid triangle?

I'm getting WA again and again and I don't know any other special case... :(

Thank you very much!!

Bernat
by raiku
Sun Sep 14, 2003 5:40 pm
Forum: Volume 101 (10100-10199)
Topic: 10139 - Factovisors
Replies: 80
Views: 42280

10139 - Factovisors

Hi! Can someone tell me why i'm gettin a WA? Which kind of input I fail?

Thanks

[cpp]

#include <stdio.h>

#include <math.h>
#include <iostream>

#define MAX 46400

int sieve[MAX], primers[5000];

using namespace std;

long n, d, d2;


int fer_primers(void)
{
int i, j, z=1;
int s=0;

for(i=0 ...

Go to advanced search