結果

問題 No.1528 Not 1
ユーザー Manuel1024Manuel1024
提出日時 2021-06-04 20:23:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 119 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-04-29 23:46:31
合計ジャッジ時間 3,492 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 75 ms
76,032 KB
testcase_02 AC 72 ms
75,648 KB
testcase_03 AC 70 ms
76,032 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 73 ms
76,160 KB
testcase_07 AC 76 ms
75,904 KB
testcase_08 WA -
testcase_09 AC 66 ms
71,808 KB
testcase_10 AC 78 ms
76,032 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 36 ms
51,712 KB
testcase_16 AC 38 ms
51,456 KB
testcase_17 AC 37 ms
51,968 KB
testcase_18 AC 79 ms
76,032 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(int(n/2)):
    if i != 0:
        print(' ', end='')
    print(i*2+2, end='')
print('')
0