結果
問題 | No.2525 Great Move |
ユーザー | InTheBloom |
提出日時 | 2023-11-03 21:23:33 |
言語 | D (dmd 2.109.1) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 348 bytes |
コンパイル時間 | 4,213 ms |
コンパイル使用メモリ | 170,624 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-25 18:58:38 |
合計ジャッジ時間 | 5,132 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
ソースコード
import std; void main () { string H, S; readln.read(H, S); if (abs((H[$-1]-'0') - (S[$-1]-'0')) % 2 == 0) { writeln("Possible"); } else { writeln("Impossible"); } } void read(T...)(string S, ref T args) { auto buf = S.split; foreach (i, ref arg; args) { arg = buf[i].to!(typeof(arg)); } }