結果
問題 | No.1680 Sum and Difference |
ユーザー | merlin |
提出日時 | 2021-09-17 23:25:32 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 53 ms / 1,000 ms |
コード長 | 756 bytes |
コンパイル時間 | 2,007 ms |
コンパイル使用メモリ | 77,052 KB |
実行使用メモリ | 37,216 KB |
最終ジャッジ日時 | 2024-06-29 22:15:02 |
合計ジャッジ時間 | 3,822 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
36,708 KB |
testcase_01 | AC | 50 ms
36,696 KB |
testcase_02 | AC | 52 ms
37,008 KB |
testcase_03 | AC | 51 ms
37,092 KB |
testcase_04 | AC | 50 ms
36,968 KB |
testcase_05 | AC | 51 ms
36,984 KB |
testcase_06 | AC | 50 ms
37,028 KB |
testcase_07 | AC | 53 ms
37,004 KB |
testcase_08 | AC | 52 ms
37,100 KB |
testcase_09 | AC | 53 ms
36,944 KB |
testcase_10 | AC | 51 ms
36,708 KB |
testcase_11 | AC | 51 ms
37,216 KB |
testcase_12 | AC | 52 ms
37,212 KB |
testcase_13 | AC | 50 ms
36,860 KB |
testcase_14 | AC | 51 ms
36,664 KB |
testcase_15 | AC | 51 ms
36,988 KB |
testcase_16 | AC | 52 ms
36,788 KB |
testcase_17 | AC | 52 ms
37,080 KB |
testcase_18 | AC | 51 ms
36,792 KB |
testcase_19 | AC | 53 ms
36,688 KB |
testcase_20 | AC | 52 ms
37,048 KB |
ソースコード
import java.io.*; import java.util.*; class Main { public static void main(String args[])throws Exception { BufferedReader bu=new BufferedReader(new InputStreamReader(System.in)); StringBuilder sb=new StringBuilder(); String s[]=bu.readLine().split(" "); long a=Long.parseLong(s[0]),b=Long.parseLong(s[1]); long M=(int)1e9+7,x=a%M,y=b%M,ans=(x*2+1)*(y*2+1)%M; if(a%2==b%2) ans=(ans+1)*power(2,M-2,M)%M; else ans=(ans-1)*power(2,M-2,M)%M; System.out.println(ans); } static long power(long a,long b,long M) { long res=1; while(b!=0) { if(b%2==1) res=res*a%M; b>>=1; a=a*a%M; } return res; } }