結果

問題 No.2425 Power Range GCD
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-25 06:38:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 87,200 KB
実行使用メモリ 59,036 KB
最終ジャッジ日時 2023-08-25 10:13:12
合計ジャッジ時間 8,007 ms
ジャッジサーバーID
(参考情報)
judge13 / judge000
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
58,980 KB
testcase_01 AC 107 ms
58,796 KB
testcase_02 AC 103 ms
58,564 KB
testcase_03 AC 103 ms
58,708 KB
testcase_04 AC 89 ms
59,036 KB
testcase_05 AC 92 ms
58,740 KB
testcase_06 AC 103 ms
58,660 KB
testcase_07 AC 102 ms
58,792 KB
testcase_08 AC 102 ms
58,788 KB
testcase_09 AC 103 ms
58,704 KB
testcase_10 AC 105 ms
59,024 KB
testcase_11 AC 87 ms
58,764 KB
testcase_12 AC 92 ms
58,796 KB
testcase_13 AC 107 ms
59,020 KB
testcase_14 AC 105 ms
58,976 KB
testcase_15 AC 104 ms
58,860 KB
testcase_16 AC 104 ms
58,696 KB
testcase_17 AC 104 ms
58,768 KB
testcase_18 AC 104 ms
58,940 KB
testcase_19 AC 89 ms
59,020 KB
testcase_20 AC 92 ms
59,004 KB
testcase_21 AC 106 ms
58,788 KB
testcase_22 AC 104 ms
59,020 KB
testcase_23 AC 103 ms
59,020 KB
testcase_24 AC 108 ms
59,032 KB
testcase_25 AC 104 ms
58,752 KB
testcase_26 AC 108 ms
58,796 KB
testcase_27 AC 107 ms
58,788 KB
testcase_28 AC 89 ms
58,700 KB
testcase_29 AC 106 ms
58,692 KB
testcase_30 AC 106 ms
59,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

L,R = map(int,input().split())
print(1)
0