結果

問題 No.8045 怪文書
ユーザー gma712gma712
提出日時 2019-04-01 21:21:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 165 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,964 KB
最終ジャッジ日時 2024-11-26 10:50:31
合計ジャッジ時間 34,238 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,444 KB
testcase_01 AC 26 ms
21,828 KB
testcase_02 AC 29 ms
17,440 KB
testcase_03 AC 28 ms
21,700 KB
testcase_04 AC 27 ms
17,440 KB
testcase_05 AC 26 ms
21,956 KB
testcase_06 AC 27 ms
17,444 KB
testcase_07 TLE -
testcase_08 AC 48 ms
17,572 KB
testcase_09 AC 97 ms
21,956 KB
testcase_10 AC 40 ms
17,572 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8

def main():
  n, m = map(int, input().split(' '))
  a = 1
  for i in range(1, n + 1):
    a *= i
  print(a % m)


if __name__ == '__main__':
  main()
0