結果

問題 No.2193 メガの下1桁
ユーザー shino16shino16
提出日時 2022-09-30 23:01:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 172 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 195,496 KB
最終ジャッジ日時 2024-12-24 15:47:32
合計ジャッジ時間 38,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
15,744 KB
testcase_01 AC 30 ms
16,000 KB
testcase_02 AC 30 ms
15,744 KB
testcase_03 AC 29 ms
28,464 KB
testcase_04 AC 31 ms
15,744 KB
testcase_05 AC 28 ms
195,496 KB
testcase_06 AC 26 ms
15,744 KB
testcase_07 AC 27 ms
15,872 KB
testcase_08 AC 25 ms
15,744 KB
testcase_09 AC 28 ms
30,296 KB
testcase_10 AC 26 ms
15,872 KB
testcase_11 AC 52 ms
16,128 KB
testcase_12 AC 27 ms
15,872 KB
testcase_13 AC 27 ms
27,004 KB
testcase_14 AC 26 ms
15,872 KB
testcase_15 AC 27 ms
15,872 KB
testcase_16 AC 27 ms
15,872 KB
testcase_17 AC 28 ms
28,284 KB
testcase_18 TLE -
testcase_19 AC 27 ms
27,632 KB
testcase_20 AC 26 ms
15,872 KB
testcase_21 AC 27 ms
28,316 KB
testcase_22 AC 27 ms
15,872 KB
testcase_23 AC 27 ms
10,496 KB
testcase_24 AC 27 ms
10,496 KB
testcase_25 AC 27 ms
10,368 KB
testcase_26 AC 26 ms
10,368 KB
testcase_27 AC 26 ms
10,368 KB
testcase_28 AC 27 ms
10,496 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# naive (this should TLE)

m = int(input())
d = int(input())
r = int(input())
b = int(input())
for _ in range(r):
    m = (m + d) ** m
print('A' if m % b == 10 else m % b)
0