結果

問題 No.276 連続する整数の和(1)
ユーザー steek79steek79
提出日時 2015-10-17 23:01:15
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 55 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 6,628 KB
実行使用メモリ 6,180 KB
最終ジャッジ日時 2023-09-28 21:50:40
合計ジャッジ時間 964 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,164 KB
testcase_01 AC 13 ms
6,140 KB
testcase_02 AC 12 ms
6,096 KB
testcase_03 WA -
testcase_04 AC 12 ms
6,036 KB
testcase_05 WA -
testcase_06 AC 12 ms
6,024 KB
testcase_07 WA -
testcase_08 AC 12 ms
6,028 KB
testcase_09 AC 12 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()

if N%2 == 1:
    print N
else:
    print 1
0