結果
問題 | No.91 赤、緑、青の石 |
ユーザー | むらため |
提出日時 | 2019-01-20 08:35:13 |
言語 | Nim (2.0.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,068 bytes |
コンパイル時間 | 2,472 ms |
コンパイル使用メモリ | 62,660 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-07-01 10:25:00 |
合計ジャッジ時間 | 9,545 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | TLE | - |
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()] rgb = rgb.filterIt(it > 0) var ans = 0 while true: rgb = rgb.filterIt(it > 0) # echo rgb,ans if rgb.len == 3: # 5 18 36 var del = rgb.min() rgb = rgb.mapIt(it - del) ans += del elif rgb.len == 2: # 0 13 31 let x = rgb.max() let y = rgb.min() var n = (x - y) div 2 if n > 1 and n >= x - n * 2: n = n div 2 if n == 0 : if x == 3 and y == 2: rgb = @[1,2,1] continue if x == 2: break rgb = @[x mod 4,y mod 4] ans += y div 4 * 2 else: rgb = @[x - n * 2, y , n ] # 9 13 13 elif rgb.len == 1: let r = rgb[0] if r <= 4: break rgb = @[1,1,r - 4] else: break echo ans