結果

問題 No.276 連続する整数の和(1)
ユーザー flippergoflippergo
提出日時 2024-12-19 11:41:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 62 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 53,504 KB
最終ジャッジ日時 2024-12-19 11:41:18
合計ジャッジ時間 1,961 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,032 KB
testcase_01 AC 41 ms
52,876 KB
testcase_02 AC 41 ms
52,264 KB
testcase_03 AC 40 ms
52,624 KB
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 41 ms
52,216 KB
testcase_06 AC 44 ms
52,824 KB
testcase_07 AC 40 ms
52,488 KB
testcase_08 AC 41 ms
52,068 KB
testcase_09 AC 42 ms
52,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N%2==0:
    print(N//2)
else:
    print(N)
0