結果

問題 No.72 そろばん Med
ユーザー Mcpu3Mcpu3
提出日時 2018-09-07 17:16:29
言語 Java
(openjdk 23)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 262 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 73,656 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-11-27 22:25:49
合計ジャッジ時間 6,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,180 KB
testcase_01 AC 125 ms
41,076 KB
testcase_02 AC 110 ms
40,164 KB
testcase_03 AC 110 ms
39,860 KB
testcase_04 AC 126 ms
41,032 KB
testcase_05 AC 109 ms
40,060 KB
testcase_06 AC 126 ms
41,116 KB
testcase_07 AC 124 ms
41,344 KB
testcase_08 AC 118 ms
40,168 KB
testcase_09 AC 114 ms
40,184 KB
testcase_10 AC 124 ms
41,192 KB
testcase_11 AC 124 ms
41,460 KB
testcase_12 AC 109 ms
39,884 KB
testcase_13 AC 111 ms
40,184 KB
testcase_14 AC 116 ms
40,652 KB
testcase_15 AC 125 ms
41,284 KB
testcase_16 AC 106 ms
39,916 KB
testcase_17 AC 111 ms
40,000 KB
testcase_18 AC 111 ms
39,996 KB
testcase_19 AC 122 ms
40,892 KB
testcase_20 AC 121 ms
41,048 KB
testcase_21 AC 122 ms
41,088 KB
testcase_22 AC 111 ms
39,884 KB
testcase_23 AC 125 ms
41,208 KB
testcase_24 AC 122 ms
41,084 KB
testcase_25 AC 111 ms
39,892 KB
testcase_26 AC 126 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong(),m=1000007,a,b,c;
		sc.close();
		a=(n+1)/2%m;
		b=(n/2+1)%m;
		c=n/2%m;
		System.out.print((a*b%m+c)%m);
	}
}
0