結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
ユーザー xsdxsd
提出日時 2022-07-02 11:44:58
言語 OCaml
(5.2.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 151 bytes
コンパイル時間 977 ms
コンパイル使用メモリ 21,572 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-27 04:52:54
合計ジャッジ時間 2,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

Scanf.scanf "%d %d %c" (fun s t c ->
    print_endline @@
        if (if c = '<' then (<) else if c = '>' then (>) else (=)) s t then "YES" else "NO"
)
0