結果
問題 | No.208 王将 |
ユーザー | toshiro_yanagi |
提出日時 | 2018-06-23 04:38:12 |
言語 | Nim (2.0.2) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 257 bytes |
コンパイル時間 | 908 ms |
コンパイル使用メモリ | 64,292 KB |
最終ジャッジ日時 | 2024-11-14 20:29:23 |
合計ジャッジ時間 | 1,416 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
/home/judge/data/code/Main.nim(6, 25) Error: attempting to call undeclared routine: 'safeAdd'
ソースコード
import strutils proc input: string = while true: let t = stdin.readChar if t.isDigit: result.safeAdd t else: break let x, y, x2, y2 = input().parseInt var offset = 0 if x == y and x2 == y2 and x > x2: offset += 1 echo max(x, y) + offset