import java.io.*; /** * 公式法直接解决。 */ public class Main { public static BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); public static BufferedWriter out = new BufferedWriter(new OutputStreamWriter(System.out)); public static StreamTokenizer cin = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in))); public static PrintWriter cout = new PrintWriter(new OutputStreamWriter(System.out)); static int f(int n){ if(n==1){ return 0; } else{ return (f(n-1)+3)%n; } } public static void main(String[] args) throws Exception { cin.nextToken(); int n = (int) cin.nval; cout.print(f(n) + 1); cout.flush(); } }
0.0分
1 人评分
上车人数 (C语言代码)浏览:1258 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:1914 |
C语言考试练习题_一元二次方程 (C语言代码)浏览:773 |
C语言训练-求1+2!+3!+...+N!的和 (C语言代码)浏览:822 |
WU-陶陶摘苹果2 (C++代码)浏览:1018 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:1482 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:566 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:569 |
核桃的数量 (C语言代码)浏览:893 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:729 |