2010年9月17日 星期五

ACM 10499 - The Land of Justice

#include <stdio.h>
int main()
{
while (1)
{
long long n;
scanf("%ld", &n);

if (n < 0L) { break; }

if (n == 1L) { printf("0%%\n"); }
else { printf("%ld%%\n", n * 25); }
}
return 0;
}


回目錄
回首頁

沒有留言 :

張貼留言

Related Posts Plugin for WordPress, Blogger...