結果

問題 No.72 そろばん Med
ユーザー holegumaholeguma
提出日時 2015-08-12 03:57:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 50,620 KB
最終ジャッジ日時 2024-11-21 11:49:19
合計ジャッジ時間 4,419 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,416 KB
testcase_01 AC 56 ms
50,108 KB
testcase_02 AC 56 ms
50,448 KB
testcase_03 AC 56 ms
50,136 KB
testcase_04 AC 56 ms
50,400 KB
testcase_05 AC 55 ms
50,620 KB
testcase_06 AC 56 ms
50,088 KB
testcase_07 AC 55 ms
49,904 KB
testcase_08 AC 56 ms
50,428 KB
testcase_09 AC 58 ms
50,384 KB
testcase_10 AC 55 ms
50,128 KB
testcase_11 AC 56 ms
50,328 KB
testcase_12 AC 58 ms
50,376 KB
testcase_13 AC 57 ms
50,280 KB
testcase_14 AC 57 ms
50,180 KB
testcase_15 AC 56 ms
50,500 KB
testcase_16 AC 55 ms
50,256 KB
testcase_17 AC 57 ms
50,204 KB
testcase_18 AC 56 ms
50,020 KB
testcase_19 AC 56 ms
50,392 KB
testcase_20 AC 56 ms
50,104 KB
testcase_21 AC 56 ms
50,220 KB
testcase_22 AC 56 ms
50,480 KB
testcase_23 AC 56 ms
50,320 KB
testcase_24 AC 55 ms
50,456 KB
testcase_25 AC 58 ms
50,408 KB
testcase_26 AC 55 ms
50,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class Main{

static final PrintWriter out=new PrintWriter(System.out);
static long MOD=1000007;

public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line="";
while((line=br.readLine())!=null&&!line.isEmpty()){
long n=Long.parseLong(line);
long k=(long)n/2;
long ans=(((n-k)%MOD)*(k%MOD)+n%MOD)%MOD;
out.println(ans);
out.flush();
}
}
}
0