結果

問題 No.3062 Rotate and Maximize
ユーザー qwewe
提出日時 2025-05-14 12:59:48
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 521 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,796 KB
実行使用メモリ 67,252 KB
最終ジャッジ日時 2025-05-14 13:00:51
合計ジャッジ時間 4,276 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# Read the two integers A and B from standard input
# input().split() reads the line and splits it by spaces, returning a list of strings.
# map(int, ...) applies the int() function to each string in the list, converting them to integers.
# A, B = ... unpacks the resulting map object into two variables A and B.
A, B = map(int, sys.stdin.readline().split())

# Calculate the sum
result = A + B

# Print the result to standard output
# print() automatically adds a newline at the end by default.
print(result)
0