結果

問題 No.72 そろばん Med
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-20 16:24:34
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 595 bytes
コンパイル時間 2,758 ms
コンパイル使用メモリ 73,864 KB
実行使用メモリ 41,896 KB
最終ジャッジ日時 2024-06-02 12:22:09
合計ジャッジ時間 6,261 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,200 KB
testcase_01 AC 101 ms
39,884 KB
testcase_02 AC 103 ms
41,120 KB
testcase_03 AC 112 ms
41,000 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 116 ms
40,152 KB
testcase_07 AC 115 ms
41,248 KB
testcase_08 AC 104 ms
41,212 KB
testcase_09 AC 114 ms
41,600 KB
testcase_10 AC 103 ms
41,688 KB
testcase_11 AC 116 ms
41,136 KB
testcase_12 AC 105 ms
41,312 KB
testcase_13 AC 117 ms
41,144 KB
testcase_14 AC 114 ms
41,432 KB
testcase_15 AC 110 ms
40,976 KB
testcase_16 AC 100 ms
41,896 KB
testcase_17 AC 114 ms
41,260 KB
testcase_18 AC 111 ms
40,156 KB
testcase_19 AC 110 ms
41,124 KB
testcase_20 AC 115 ms
41,288 KB
testcase_21 AC 114 ms
41,480 KB
testcase_22 AC 101 ms
41,448 KB
testcase_23 AC 100 ms
41,676 KB
testcase_24 AC 102 ms
41,436 KB
testcase_25 AC 98 ms
41,172 KB
testcase_26 AC 109 ms
41,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        long n = koko.nextLong();
        if(n%2==0){
            long t = (n/2)%1000007;
            long a = (t*t+n)%1000007;
            System.out.println(a);
        }else{
            long a = ((n+1)/2)%1000007;
            n = n%1000007;
            long b = n*a;
            b=b%1000007;
            long c = a*a;
            c=c%1000007;
            long ans = (b-c+n);
            System.out.println((long)ans);
        }
    }
    
}
0