比赛 | NOIP_1 | 评测结果 | WWWWWWWWWA |
---|---|---|---|
题目名称 | 圆弦 | 最终得分 | 10 |
用户昵称 | E.M.B.E.R | 运行时间 | 0.000 s |
代码语言 | Pascal | 内存使用 | 0.00 MiB |
提交时间 | 2008-09-03 20:49:15 | ||
program EmberAsh; var n:longint; begin assign(input,'circlex.in'); reset(input); assign(output,'circlex.out'); rewrite(output); readln(n); if n=4 then writeln(9); if n=5 then writeln(21); if (n<>4)and(n<>5) then writeln(1); close(input);close(output); end.