結果
問題 | No.494 yukicoder |
ユーザー |
|
提出日時 | 2019-05-22 18:34:16 |
言語 | Swift (6.0.3) |
結果 |
AC
|
実行時間 | 10 ms / 2,000 ms |
コード長 | 215 bytes |
コンパイル時間 | 534 ms |
コンパイル使用メモリ | 117,392 KB |
実行使用メモリ | 8,832 KB |
最終ジャッジ日時 | 2024-11-30 14:08:13 |
合計ジャッジ時間 | 1,143 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 |
ソースコード
let input:[String] = readLine()!.map{String($0)} let str:String = "yukicoder" let ary:[String] = str.map{String($0)} for i in 0 ..< input.count { if input[i] == "?" { print(ary[i]) break } }