結果

問題 No.72 そろばん Med
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-19 17:28:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 430 bytes
コンパイル時間 3,574 ms
コンパイル使用メモリ 74,848 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-11-21 12:11:57
合計ジャッジ時間 7,373 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,936 KB
testcase_01 AC 127 ms
41,368 KB
testcase_02 AC 125 ms
41,364 KB
testcase_03 AC 124 ms
41,500 KB
testcase_04 AC 127 ms
41,360 KB
testcase_05 AC 127 ms
41,376 KB
testcase_06 AC 129 ms
41,256 KB
testcase_07 AC 121 ms
40,012 KB
testcase_08 AC 126 ms
40,960 KB
testcase_09 AC 124 ms
41,196 KB
testcase_10 AC 112 ms
40,948 KB
testcase_11 AC 124 ms
41,156 KB
testcase_12 AC 124 ms
41,140 KB
testcase_13 AC 127 ms
41,100 KB
testcase_14 AC 123 ms
41,348 KB
testcase_15 AC 122 ms
41,164 KB
testcase_16 AC 126 ms
41,240 KB
testcase_17 AC 124 ms
41,348 KB
testcase_18 AC 113 ms
41,236 KB
testcase_19 AC 127 ms
41,376 KB
testcase_20 AC 126 ms
41,148 KB
testcase_21 AC 124 ms
40,956 KB
testcase_22 AC 124 ms
41,396 KB
testcase_23 AC 113 ms
41,220 KB
testcase_24 AC 125 ms
41,368 KB
testcase_25 AC 111 ms
41,104 KB
testcase_26 AC 135 ms
40,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No72 {
	public static final long mod = 1000007;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long x;
		if(N % 2 == 0) {
			x = N/2;
		}else {
			x =(N-1)/2;
		}
		long a = (x+1) % mod;
		long b = (N-x+1) % mod;
		if((a*b) % mod == 0) {
			System.out.println(mod -1);
		}else {
			System.out.println((a*b) % mod - 1);
		}
	}
}
0