結果

問題 No.2001 Distanced Triple
ユーザー achapi
提出日時 2022-07-08 22:19:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 108 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-12-28 06:21:12
合計ジャッジ時間 2,997 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r=map(int,input().split())
a,b,c=map(int,input().split())
c=max(c,a+b)
print(pow(c,(r-b)-(l+a)+1,10**9+7))
0