結果
問題 |
No.3026 Range LCM (Online Version)
|
ユーザー |
![]() |
提出日時 | 2025-04-15 21:06:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 70 bytes |
コンパイル時間 | 653 ms |
コンパイル使用メモリ | 81,844 KB |
実行使用メモリ | 53,624 KB |
最終ジャッジ日時 | 2025-04-15 21:12:24 |
合計ジャッジ時間 | 5,006 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | WA * 36 |
ソースコード
MOD = 10**9 + 7 n = int(input()) result = pow(n, 3, MOD) print(result)