結果
問題 |
No.8064 う し た ぷ に き あ く ん 笑
|
ユーザー |
![]() |
提出日時 | 2020-04-01 23:04:18 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 521 bytes |
コンパイル時間 | 228 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 17,300 KB |
最終ジャッジ日時 | 2024-06-27 12:29:36 |
合計ジャッジ時間 | 5,620 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 28 TLE * 1 -- * 18 |
ソースコード
them = """う し う あ ん 笑 た ぷ く ん ぷ に し き あ く う く あ 笑 う ん し ぷ う き く 笑 う 笑 に き ぷ 笑 た き た ん し あ し ん う う う た き 笑 に く 笑 笑 """ alphabet = them.split("\n") dictionary = {i:j for (j,i) in zip(alphabet, "abcdefghijklmnopqrstuvwxyz")} ans = "" for c in input(): ans += dictionary[c] print(ans)