結果

問題 No.192 合成数
ユーザー splash9494splash9494
提出日時 2024-06-09 17:53:54
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 61 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 67,116 KB
最終ジャッジ日時 2024-06-09 17:53:59
合計ジャッジ時間 4,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,996 KB
testcase_01 AC 35 ms
52,528 KB
testcase_02 AC 36 ms
52,824 KB
testcase_03 AC 37 ms
52,992 KB
testcase_04 AC 36 ms
52,264 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 35 ms
53,680 KB
testcase_09 AC 33 ms
52,476 KB
testcase_10 RE -
testcase_11 AC 34 ms
52,484 KB
testcase_12 RE -
testcase_13 AC 38 ms
51,828 KB
testcase_14 RE -
testcase_15 AC 32 ms
52,076 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 38 ms
52,332 KB
testcase_22 AC 36 ms
52,480 KB
testcase_23 RE -
testcase_24 AC 34 ms
52,300 KB
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

if N % 2 == 0:
    print(N)
else:
    n + 1
0