結果
問題 | No.892 タピオカ |
ユーザー |
![]() |
提出日時 | 2021-01-14 10:30:46 |
言語 | Python3 (3.9.0 + numpy 1.14.5 + scipy 1.1.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 142 Byte |
コンパイル時間 | 531 ms |
使用メモリ | 13,604 KB |
最終ジャッジ日時 | 2021-01-14 10:30:50 |
合計ジャッジ時間 | 3,978 ms |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
9,488 KB |
testcase_01 | AC | 14 ms
8,048 KB |
testcase_02 | AC | 14 ms
8,052 KB |
testcase_03 | AC | 34 ms
8,404 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
ソースコード
a=[*map(int,input().split())] b=a[1::2] a=a[::2] cnt=0 for i,j in zip(a,b): cnt+=i**j if cnt%2==0: print(':-)') else: print(':-(')