結果

問題 No.353 ヘイトプラス
ユーザー knt3110knt3110
提出日時 2018-06-26 19:31:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 140 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 10,568 KB
実行使用メモリ 227,164 KB
最終ジャッジ日時 2023-09-13 14:12:44
合計ジャッジ時間 5,093 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = (int(i) for i in input().split())

ans = []
for i in range(a):
    ans.append(0)
for j in range(b):
    ans.append(0)
print(len(ans))
0