結果

問題 No.3062 Rotate and Maximize
コンテスト
ユーザー qwewe
提出日時 2025-05-14 12:59:48
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
RE  
実行時間 -
コード長 521 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 235 ms
コンパイル使用メモリ 95,472 KB
実行使用メモリ 90,496 KB
最終ジャッジ日時 2026-07-10 15:33:51
合計ジャッジ時間 11,266 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 51
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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