結果

問題 No.1128 Wedding Ceremony
ユーザー DrDrpilotDrDrpilot
提出日時 2022-09-11 19:19:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 87,300 KB
実行使用メモリ 72,736 KB
最終ジャッジ日時 2023-08-18 22:59:41
合計ジャッジ時間 4,982 ms
ジャッジサーバーID
(参考情報)
judge10 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
72,388 KB
testcase_01 AC 102 ms
72,656 KB
testcase_02 AC 104 ms
72,584 KB
testcase_03 AC 102 ms
72,632 KB
testcase_04 AC 102 ms
72,384 KB
testcase_05 AC 105 ms
72,616 KB
testcase_06 AC 105 ms
72,684 KB
testcase_07 AC 102 ms
72,628 KB
testcase_08 AC 100 ms
72,396 KB
testcase_09 AC 100 ms
72,364 KB
testcase_10 AC 99 ms
72,736 KB
testcase_11 AC 102 ms
72,676 KB
testcase_12 AC 101 ms
72,344 KB
testcase_13 AC 101 ms
72,616 KB
testcase_14 AC 105 ms
72,216 KB
testcase_15 AC 100 ms
72,548 KB
testcase_16 AC 96 ms
72,508 KB
testcase_17 AC 102 ms
72,324 KB
testcase_18 AC 105 ms
72,620 KB
testcase_19 AC 102 ms
72,320 KB
testcase_20 AC 98 ms
72,580 KB
testcase_21 AC 97 ms
72,676 KB
testcase_22 AC 104 ms
72,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I():return int(input())
def MAP():return map(int,input().split())
def MAPs():return map(str,input().split())
def LI(): return list(map(int,input().split()))
def TPL(): return tuple(map(int,input().split()))
def S():return input()
from collections import defaultdict,Counter,deque
from copy import deepcopy
from heapq import heapify,heappop,heappush
from bisect import bisect_left,bisect_right
from itertools import accumulate,product,permutations,combinations
from math import gcd,ceil,floor,sqrt,pi,sin,cos,tan,radians
inf=float('inf');mod=998244353;Mod=10**9+7

n=I()
print(n+int(n%2==0))
0