結果
問題 |
No.2425 Power Range GCD
|
ユーザー |
![]() |
提出日時 | 2023-08-18 21:25:10 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 361 bytes |
コンパイル時間 | 132 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 23,560 KB |
最終ジャッジ日時 | 2024-11-28 05:35:39 |
合計ジャッジ時間 | 79,411 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 TLE * 25 |
ソースコード
import sys input = lambda :sys.stdin.readline()[:-1] from math import sqrt, pi, exp, log, log10, sin, cos, tan, ceil, floor, perm, comb, gcd, modf, prod, inf, nan def main(): L, R = map(int, input().split()) ans = 0 for i in range(R-L): ans = gcd((R+i) ** (R+i), (R+i+1) ** (R+i+1)) print(ans) if __name__ == '__main__': main()