結果

問題 No.276 連続する整数の和(1)
ユーザー dangodango
提出日時 2023-06-15 21:08:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 1,000 ms
コード長 43 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 87,296 KB
実行使用メモリ 71,604 KB
最終ジャッジ日時 2023-09-05 23:55:36
合計ジャッジ時間 1,801 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,552 KB
testcase_01 AC 72 ms
71,380 KB
testcase_02 AC 69 ms
71,380 KB
testcase_03 AC 67 ms
71,604 KB
testcase_04 AC 71 ms
71,484 KB
testcase_05 AC 66 ms
71,384 KB
testcase_06 AC 68 ms
71,304 KB
testcase_07 AC 66 ms
71,300 KB
testcase_08 AC 67 ms
71,336 KB
testcase_09 AC 64 ms
71,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
print(N % 2 * N or N // 2)
0