結果

問題 No.3115 One Power One Kill
ユーザー hirayuu_yc
提出日時 2025-04-18 21:15:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 70,860 KB
平均クエリ数 2.00
最終ジャッジ日時 2025-04-18 21:15:15
合計ジャッジ時間 3,011 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
mod=1000000007
A=102
B=206
print(A,B)
K=int(input())
print(pow(gcd(K,B),A,B))
0