結果

問題 No.72 そろばん Med
ユーザー tsunabittsunabit
提出日時 2020-01-03 20:29:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 644 bytes
コンパイル時間 3,762 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-11-22 19:25:13
合計ジャッジ時間 8,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,260 KB
testcase_01 AC 109 ms
40,064 KB
testcase_02 AC 114 ms
40,064 KB
testcase_03 AC 127 ms
41,248 KB
testcase_04 AC 122 ms
41,032 KB
testcase_05 AC 124 ms
41,204 KB
testcase_06 AC 121 ms
40,828 KB
testcase_07 AC 124 ms
40,968 KB
testcase_08 AC 124 ms
41,332 KB
testcase_09 AC 124 ms
40,868 KB
testcase_10 AC 120 ms
41,192 KB
testcase_11 AC 119 ms
40,816 KB
testcase_12 AC 117 ms
41,116 KB
testcase_13 AC 122 ms
41,380 KB
testcase_14 AC 108 ms
39,804 KB
testcase_15 AC 143 ms
40,952 KB
testcase_16 AC 108 ms
39,668 KB
testcase_17 AC 109 ms
40,028 KB
testcase_18 AC 117 ms
40,840 KB
testcase_19 AC 118 ms
40,948 KB
testcase_20 AC 110 ms
40,972 KB
testcase_21 AC 124 ms
41,076 KB
testcase_22 AC 122 ms
41,216 KB
testcase_23 AC 126 ms
40,952 KB
testcase_24 AC 124 ms
41,084 KB
testcase_25 AC 124 ms
41,020 KB
testcase_26 AC 119 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No72 {
//	private static Set<String> set = new HashSet<String>();
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		long ans = 0;
		long t = 1000007;
		// a個の時、a+1までの数を表現出来て、これが2箇所に分かれるとして、
		// 均等に割った方が良いので、((N+1)/2+1)*(N/2+1)-1ですかね?
		// modを取るのだけ気を付けないとですね
		ans = (((n / 2 + 1) % t) * ((n - (n / 2) + 1) % t) - 1) % t;
		if(ans < 0) {
			ans += t;
		}
		System.out.println(ans);
	}
}
0