結果

問題 No.16 累乗の加算
ユーザー gigurururugigurururu
提出日時 2014-11-29 11:47:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 102 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 35,528 KB
最終ジャッジ日時 2025-01-03 10:23:49
合計ジャッジ時間 67,340 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
33,368 KB
testcase_01 AC 32 ms
17,064 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 30 ms
32,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=int(input().split()[0])
print(sum(x**int(s)%1000003 for i,s in enumerate(input().split()))%1000003)
0