結果

問題 No.976 2 の 128 乗と M
ユーザー AAAR SalmonAAAR Salmon
提出日時 2021-05-14 18:33:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 57,620 KB
最終ジャッジ日時 2024-04-09 22:00:21
合計ジャッジ時間 3,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,528 KB
testcase_01 AC 38 ms
57,144 KB
testcase_02 AC 38 ms
56,452 KB
testcase_03 AC 41 ms
55,140 KB
testcase_04 AC 43 ms
55,724 KB
testcase_05 AC 42 ms
55,808 KB
testcase_06 AC 42 ms
55,644 KB
testcase_07 AC 38 ms
56,068 KB
testcase_08 AC 39 ms
56,856 KB
testcase_09 AC 38 ms
56,888 KB
testcase_10 AC 37 ms
56,388 KB
testcase_11 AC 38 ms
56,124 KB
testcase_12 AC 37 ms
56,296 KB
testcase_13 AC 41 ms
56,896 KB
testcase_14 AC 38 ms
57,620 KB
testcase_15 AC 39 ms
56,564 KB
testcase_16 AC 38 ms
55,264 KB
testcase_17 AC 37 ms
55,992 KB
testcase_18 AC 37 ms
55,596 KB
testcase_19 AC 37 ms
55,952 KB
testcase_20 AC 38 ms
56,904 KB
testcase_21 AC 38 ms
56,252 KB
testcase_22 AC 38 ms
55,840 KB
testcase_23 AC 38 ms
55,740 KB
testcase_24 AC 42 ms
57,208 KB
testcase_25 AC 41 ms
55,628 KB
testcase_26 AC 40 ms
55,580 KB
testcase_27 AC 40 ms
56,168 KB
testcase_28 AC 41 ms
55,960 KB
testcase_29 AC 39 ms
56,592 KB
testcase_30 AC 38 ms
56,072 KB
testcase_31 AC 38 ms
55,624 KB
testcase_32 AC 38 ms
56,904 KB
testcase_33 AC 38 ms
55,316 KB
testcase_34 AC 37 ms
55,816 KB
testcase_35 AC 38 ms
55,908 KB
testcase_36 AC 39 ms
56,128 KB
testcase_37 AC 37 ms
56,704 KB
testcase_38 AC 38 ms
56,436 KB
testcase_39 AC 38 ms
56,272 KB
testcase_40 AC 38 ms
55,400 KB
testcase_41 AC 38 ms
55,792 KB
testcase_42 AC 40 ms
56,440 KB
testcase_43 AC 42 ms
55,920 KB
testcase_44 AC 41 ms
55,996 KB
testcase_45 AC 41 ms
56,084 KB
testcase_46 AC 41 ms
56,556 KB
testcase_47 AC 41 ms
55,320 KB
testcase_48 AC 40 ms
55,320 KB
testcase_49 AC 41 ms
56,216 KB
testcase_50 AC 41 ms
56,120 KB
testcase_51 AC 42 ms
56,432 KB
testcase_52 AC 40 ms
55,828 KB
testcase_53 AC 39 ms
56,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from math import sin, cos, tan
from functools import reduce
from collections import deque
import heapq
sys.setrecursionlimit(1000000)
intm1 = lambda x:int(x)-1

M = int(input())
print(pow(2, 128, M))
0