結果
問題 | No.91 赤、緑、青の石 |
ユーザー | むらため |
提出日時 | 2019-01-20 09:16:56 |
言語 | Nim (2.0.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 902 bytes |
コンパイル時間 | 2,446 ms |
コンパイル使用メモリ | 62,924 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-07-01 10:25:26 |
合計ジャッジ時間 | 9,215 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 27) Warning: imported and not used: 'math' [UnusedImport] /home/judge/data/code/Main.nim(1, 17) Warning: imported and not used: 'algorithm' [UnusedImport]
ソースコード
import sequtils,algorithm,math proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" .} proc scan(): int = while true: var k = getchar_unlocked() if k < '0': break result = 10 * result + k.ord - '0'.ord template times*(n:int,body) = (for _ in 0..<n: body) template `max=`*(x,y) = x = max(x,y) template `min=`*(x,y) = x = min(x,y) var rgb = @[scan(),scan(),scan()] var ans = 0 while true: rgb = rgb.filterIt(it > 0) if rgb.len == 0 : break # echo rgb,ans let x = rgb.max() let y = rgb.min() if rgb.len == 3: # 3つ rgb = rgb.mapIt(it - y) ans += y elif rgb.len == 2: if x <= 2 : break if x - y <= 1: let n = (x div 4).min(y div 4) ans += n rgb = @[x - 2 * n,y - 2 * n] else: let n = (x div 3).min(y) ans += n rgb = @[y - n,x - n * 3] elif rgb.len == 1: ans += x div 5 break echo ans