結果
問題 | No.892 タピオカ |
ユーザー |
![]() |
提出日時 | 2021-01-14 10:33:37 |
言語 | Python3 (3.9.0 + numpy 1.14.5 + scipy 1.1.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 120 Byte |
コンパイル時間 | 690 ms |
使用メモリ | 8,160 KB |
最終ジャッジ日時 | 2021-01-14 10:33:39 |
合計ジャッジ時間 | 1,693 ms |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
a=[*map(int,input().split())] a=a[::2] cnt=1 for i in a: cnt+=i if cnt%2==0: print(':-)') else: print(':-(')