結果
問題 | No.112 ややこしい鶴亀算 |
ユーザー |
|
提出日時 | 2019-07-07 16:26:55 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 29 ms / 5,000 ms |
コード長 | 413 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-04 20:54:26 |
合計ジャッジ時間 | 1,736 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 23 |
ソースコード
n = int(input()) a = list(map(int,input().split())) s1=a[0]+2 s2=a[0]+4 t=0 k=0 for x in a: if s1-x==2: t+=1 elif s1-x==4: k+=1 else: break else: if t*2+k*4==s1: print(f"{t} {k}") exit t=0 k=0 for x in a: if s2-x==2: t+=1 elif s2-x==4: k+=1 else: break else: if t*2+k*4==s2: print(f"{t} {k}") exit