标签:des style blog http color io os ar java
http://acm.hdu.edu.cn/showproblem.php?pid=1517
Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 3761 Accepted Submission(s): 2136
#include<stdio.h> int main() { double n; while(scanf("%lf",&n)!=EOF) { while(n>18) n/=18; printf(n<=9?"Stan wins.\n":"Ollie wins.\n"); } return 0; }
标签:des style blog http color io os ar java
原文地址:http://www.cnblogs.com/M-D-LUFFI/p/3995673.html