結果

問題 No.72 そろばん Med
ユーザー リチウムリチウム
提出日時 2014-11-19 00:08:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 432 bytes
コンパイル時間 1,730 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-06-10 21:09:32
合計ジャッジ時間 5,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,336 KB
testcase_01 AC 108 ms
41,176 KB
testcase_02 AC 101 ms
40,188 KB
testcase_03 AC 108 ms
41,128 KB
testcase_04 AC 105 ms
40,028 KB
testcase_05 WA -
testcase_06 AC 101 ms
39,924 KB
testcase_07 AC 108 ms
41,096 KB
testcase_08 WA -
testcase_09 AC 98 ms
40,104 KB
testcase_10 AC 102 ms
39,892 KB
testcase_11 AC 99 ms
40,024 KB
testcase_12 AC 108 ms
40,940 KB
testcase_13 WA -
testcase_14 AC 99 ms
40,096 KB
testcase_15 AC 106 ms
41,244 KB
testcase_16 AC 109 ms
41,140 KB
testcase_17 AC 109 ms
41,224 KB
testcase_18 AC 108 ms
41,092 KB
testcase_19 AC 95 ms
40,084 KB
testcase_20 AC 116 ms
41,280 KB
testcase_21 AC 101 ms
40,084 KB
testcase_22 WA -
testcase_23 AC 107 ms
41,124 KB
testcase_24 AC 97 ms
40,188 KB
testcase_25 AC 107 ms
40,960 KB
testcase_26 AC 97 ms
40,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong();
		int mod=1000007;
			long x=n/2;
			long y=x%mod;
			long ans=((y%mod)*((n-x)%mod)+n%mod)%mod;
			
	    if(n%2==1){
	    	long z=n/2+1;
			long m=x%mod;
			long ansk=((m%mod)*((n-z)%mod)+n%mod)%mod;
			ans=Math.max(ans,ansk);			
		}
	    System.out.println(ans);
	}}
0