結果

問題 No.72 そろばん Med
ユーザー Mcpu3Mcpu3
提出日時 2018-09-07 17:16:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 262 bytes
コンパイル時間 1,984 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-05-05 21:09:54
合計ジャッジ時間 6,444 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,008 KB
testcase_01 AC 128 ms
54,072 KB
testcase_02 AC 132 ms
54,136 KB
testcase_03 AC 129 ms
54,056 KB
testcase_04 AC 131 ms
54,040 KB
testcase_05 AC 130 ms
54,004 KB
testcase_06 AC 129 ms
53,968 KB
testcase_07 AC 128 ms
53,884 KB
testcase_08 AC 130 ms
54,108 KB
testcase_09 AC 132 ms
53,776 KB
testcase_10 AC 130 ms
54,060 KB
testcase_11 AC 128 ms
53,704 KB
testcase_12 AC 116 ms
52,940 KB
testcase_13 AC 125 ms
54,200 KB
testcase_14 AC 128 ms
54,032 KB
testcase_15 AC 130 ms
54,152 KB
testcase_16 AC 132 ms
54,168 KB
testcase_17 AC 120 ms
52,920 KB
testcase_18 AC 128 ms
53,860 KB
testcase_19 AC 129 ms
53,984 KB
testcase_20 AC 125 ms
54,348 KB
testcase_21 AC 129 ms
41,088 KB
testcase_22 AC 128 ms
40,740 KB
testcase_23 AC 130 ms
41,304 KB
testcase_24 AC 132 ms
41,376 KB
testcase_25 AC 114 ms
41,096 KB
testcase_26 AC 128 ms
41,048 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