結果
問題 | No.1543 [Cherry 2nd Tune A] これがプログラミングなのね |
ユーザー |
![]() |
提出日時 | 2023-08-28 21:59:33 |
言語 | Nim (2.2.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 171 bytes |
コンパイル時間 | 5,047 ms |
コンパイル使用メモリ | 61,500 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-30 11:41:17 |
合計ジャッジ時間 | 5,748 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 35 |
ソースコード
import strscansvar (_, s, t, c) = stdin.readLine.scanTuple("$i $i $*")let bool = case c:of "<": s < tof ">": s > telse: s == techo if bool: "YES" else: "NO"