結果

問題 No.72 そろばん Med
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-20 16:19:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 499 bytes
コンパイル時間 1,975 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-07-04 18:19:17
合計ジャッジ時間 6,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,516 KB
testcase_01 AC 119 ms
41,504 KB
testcase_02 AC 107 ms
41,144 KB
testcase_03 AC 111 ms
41,728 KB
testcase_04 AC 123 ms
41,720 KB
testcase_05 WA -
testcase_06 AC 123 ms
41,012 KB
testcase_07 AC 125 ms
41,376 KB
testcase_08 WA -
testcase_09 AC 122 ms
41,440 KB
testcase_10 AC 124 ms
41,432 KB
testcase_11 AC 123 ms
41,520 KB
testcase_12 AC 125 ms
41,136 KB
testcase_13 WA -
testcase_14 AC 125 ms
41,344 KB
testcase_15 AC 122 ms
41,576 KB
testcase_16 AC 124 ms
41,444 KB
testcase_17 AC 111 ms
40,308 KB
testcase_18 AC 124 ms
41,336 KB
testcase_19 AC 117 ms
41,480 KB
testcase_20 AC 126 ms
41,272 KB
testcase_21 AC 116 ms
41,612 KB
testcase_22 WA -
testcase_23 AC 111 ms
40,256 KB
testcase_24 AC 125 ms
41,276 KB
testcase_25 AC 115 ms
40,124 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

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 ans = (n*a-a*a+n)%1000007;
            System.out.println(ans);
        }
    }
    
}
0