結果
問題 |
No.3026 Range LCM (Online Version)
|
ユーザー |
![]() |
提出日時 | 2025-04-16 15:30:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 70 bytes |
コンパイル時間 | 358 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 51,584 KB |
最終ジャッジ日時 | 2025-04-16 15:33:42 |
合計ジャッジ時間 | 4,499 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | WA * 36 |
ソースコード
MOD = 10**9 + 7 n = int(input()) result = pow(n, 3, MOD) print(result)