結果
問題 | No.432 占い(Easy) |
ユーザー |
|
提出日時 | 2018-10-04 17:37:48 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 108 ms / 2,000 ms |
コード長 | 167 bytes |
コンパイル時間 | 336 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-12 12:17:48 |
合計ジャッジ時間 | 2,288 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 22 |
ソースコード
def f(l): while(len(l)!=1): *l,=map(lambda x,y:(x+y)%10+(x+y)//10,l[1:],l[:-1]) return l[0] for _ in range(int(input())): *s,=map(int,input()) print(f(s))