View Clarifications


[ Contest Page | Scoreboard | Submissions | Clarifications | Help | Log In ]


ProblemClarification
General I/O?

Please use standard in and standard out!

Input --
Java: Scanner in = new Scanner(new BufferedReader(new InputStreamReader(System.in)));
C: scanf("%d %d", &integer1, &integer2);
C++: int x; cin >> x;

Output --
Java: System.out.println("asdf");
C: printf("%d %d", integer1, integer2);
C++: int x = 5; cout << x << endl;
General Java class names?

Please use the following class names (make sure classes are public):

Problem A - public class A { ... }
Problem B - public class B { ... }
. . .
F - QR I think the problem should say an 8-bit value is non-printable if it is greater than 0x7e (consistent with earlier statements); my accepted solution made this assumption instead of what the problem said.

I gave up on that one, just too much reading, but I'll look into it if I eventually decide to solve it. The problem statements came from GNYRC site. Note that H sample output is wrong, for instance, not sure what other errors are there.


Ultra Cool Programming Contest Control Centre v1.8
Copyright (c) 2005-2010 by Sonny Chan