結果
問題 | No.112 ややこしい鶴亀算 |
ユーザー | nak2yoshi |
提出日時 | 2016-02-19 19:46:08 |
言語 | D (dmd 2.109.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 326 bytes |
コンパイル時間 | 1,758 ms |
コンパイル使用メモリ | 146,572 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 02:57:06 |
合計ジャッジ時間 | 2,427 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 WA * 5 |
ソースコード
import std.stdio, std.conv, std.string, std.range, std.math, std.algorithm; void main() { auto N = readln.strip.to!int; auto a = readln.split.to!(int[]); int turu, kame; kame = a.map!(e=>e/2-N+1).minPos!"a>b".front; turu = N - kame; "%s %s".writefln(turu, kame); }