結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー みどりむし🦠
提出日時 2024-04-14 19:55:44
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 294 bytes
コンパイル時間 615 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 70,764 KB
最終ジャッジ日時 2024-10-03 22:10:34
合計ジャッジ時間 5,170 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

def read():
	line = readline()
	assert line[-1] == "\n"
	assert line.strip() == line
	return line[:-1]

n = int(read())

assert 1 <= n <= 2 * 10 ** 5

A = [*map(int, read().split())]
assert len(A) == n
assert all(1 <= a <= 10**18 for a in A)

try:
	input()
	assert False
except EOFError:
	pass
0