結果

問題 No.72 そろばん Med
ユーザー リチウムリチウム
提出日時 2014-11-19 00:50:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 277 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 73,808 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-11-21 11:32:51
合計ジャッジ時間 6,850 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,060 KB
testcase_01 AC 124 ms
53,960 KB
testcase_02 AC 113 ms
53,056 KB
testcase_03 AC 126 ms
53,988 KB
testcase_04 AC 125 ms
53,808 KB
testcase_05 AC 123 ms
53,840 KB
testcase_06 AC 141 ms
53,920 KB
testcase_07 AC 141 ms
54,112 KB
testcase_08 AC 139 ms
53,992 KB
testcase_09 AC 140 ms
54,084 KB
testcase_10 AC 139 ms
53,884 KB
testcase_11 AC 130 ms
53,992 KB
testcase_12 AC 139 ms
53,908 KB
testcase_13 AC 142 ms
53,976 KB
testcase_14 AC 139 ms
53,840 KB
testcase_15 AC 140 ms
54,136 KB
testcase_16 AC 140 ms
54,244 KB
testcase_17 AC 140 ms
53,932 KB
testcase_18 AC 134 ms
52,684 KB
testcase_19 AC 133 ms
53,816 KB
testcase_20 AC 139 ms
54,060 KB
testcase_21 AC 132 ms
54,336 KB
testcase_22 AC 136 ms
54,032 KB
testcase_23 AC 135 ms
53,952 KB
testcase_24 AC 140 ms
54,172 KB
testcase_25 AC 141 ms
54,236 KB
testcase_26 AC 142 ms
53,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong();
		long x=n/2;
		long mod=1000007;
		long ans=((x%mod)*((n-x)%mod)%mod+n%mod)%mod;
			
	    System.out.println(ans);
	}}
0