結果
問題 | No.892 タピオカ |
ユーザー |
![]() |
提出日時 | 2020-04-07 16:22:40 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 28 ms / 1,000 ms |
コード長 | 180 bytes |
コンパイル時間 | 104 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-07 15:07:45 |
合計ジャッジ時間 | 825 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
ソースコード
l = list(map(int,input().split())) o,e = 0,0 for i in range(3): if l[i*2]%2==0: e += 1 else: o += 1 if e==3 or o==2: print(':-)') else: print(':-(')