結果

問題 No.892 タピオカ
ユーザー hedwig100hedwig100
提出日時 2020-04-23 22:30:20
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 131 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 10,568 KB
実行使用メモリ 29,592 KB
最終ジャッジ日時 2023-08-04 04:27:25
合計ジャッジ時間 3,925 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
29,580 KB
testcase_01 AC 136 ms
29,524 KB
testcase_02 AC 132 ms
29,400 KB
testcase_03 AC 136 ms
29,484 KB
testcase_04 AC 136 ms
29,592 KB
testcase_05 AC 138 ms
29,412 KB
testcase_06 AC 133 ms
29,568 KB
testcase_07 AC 135 ms
29,476 KB
testcase_08 AC 135 ms
29,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
A = np.array(input().split(),dtype = np.int32)
print(':-)' if np.count_nonzero(A[::2]%2 == 1)%2 == 0 else ':-(')
0