結果
| 問題 | No.2007 Arbitrary Mod (Easy) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-04-28 16:35:13 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 193 bytes |
| 記録 | |
| コンパイル時間 | 485 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 21,756 KB |
| 最終ジャッジ日時 | 2026-05-12 11:20:29 |
| 合計ジャッジ時間 | 4,665 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 TLE * 1 |
| other | -- * 30 |
ソースコード
number, count = map(int, input().split())
choise_number = 1000
result = number
for i in range(count):
if i <= 1:
result *= number
print(choise_number)
print(result%choise_number)