結果

問題 No.2557 緑以下コンテスト
ユーザー Yuzu MashiroYuzu Mashiro
提出日時 2024-06-26 10:40:29
言語 Swift
(6.0.3)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 10,326 ms
コンパイル使用メモリ 119,200 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-06-26 10:40:40
合計ジャッジ時間 11,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

// #region
enum Input {
  static func int() -> Int {
    Int(readLine()!)!
  }
}

extension Bool {
  func print<T>(yes: T, no: T) {
    Swift.print(self ? yes : no)
  }
}
// #endregion

let n = Input.int()
(n < 1200).print(yes: "green", no: "difficult")
0