結果

問題 No.892 タピオカ
ユーザー hedwig100hedwig100
提出日時 2020-04-23 22:30:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 490 ms / 1,000 ms
コード長 131 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,300 KB
最終ジャッジ日時 2024-10-14 01:29:55
合計ジャッジ時間 6,344 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 474 ms
43,904 KB
testcase_01 AC 476 ms
44,292 KB
testcase_02 AC 475 ms
43,904 KB
testcase_03 AC 490 ms
44,164 KB
testcase_04 AC 482 ms
43,908 KB
testcase_05 AC 482 ms
44,296 KB
testcase_06 AC 472 ms
44,300 KB
testcase_07 AC 478 ms
43,908 KB
testcase_08 AC 486 ms
44,296 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