結果

問題 No.892 タピオカ
ユーザー NoviNovi
提出日時 2019-11-03 13:22:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 132 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 10,700 KB
実行使用メモリ 7,972 KB
最終ジャッジ日時 2023-10-13 01:46:46
合計ジャッジ時間 1,004 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,772 KB
testcase_01 WA -
testcase_02 AC 15 ms
7,772 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 15 ms
7,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=list(map(int,input().split()))

for i in range(len(a)):
    if i%2==0:
        if a[i]%2!=0:
            print(":-(")
print(":-)")
0