結果

問題 No.2960 Judgement
ユーザー VvyLw
提出日時 2025-04-03 16:09:06
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 2 ms / 777 ms
コード長 239 bytes
コンパイル時間 1,049 ms
コンパイル使用メモリ 159,072 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-04-03 16:09:08
合計ジャッジ時間 1,976 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;
import core.bitop;
import core.checkedint;
import core.time;

void main() {
	const s = readln.split.to!(string[]);
	const cnt = s.count!"a == \"AC\" || a == \"NoOut\"";
	writeln(cnt >= 6 ? "Win" : cnt <= 4 ? "Lose" : "Draw");
}
0