Created
February 11, 2011 13:56
-
-
Save am0c/822372 to your computer and use it in GitHub Desktop.
jubeat 隅田川夏恋歌 highlight
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# | |
# 隅田川夏恋歌 | |
# ************ | |
# | |
# | |
use strict; | |
use warnings; | |
sub get_line { | |
my @lines; | |
while (my $line = <DATA>) { | |
last if $line =~ /^$/; | |
push @lines, $line; | |
} | |
join '', @lines; | |
} | |
while (my $line = get_line) { | |
my ($num, $pos); | |
$line =~ s{.}{ | |
$pos++ if $& eq "." or $& eq "M"; | |
$num |= 2 ** ($pos-1) if $& eq "M"; | |
}xeg; | |
print $num, " "; | |
} | |
__DATA__ | |
M... | |
.... | |
.... | |
.... | |
.M.. | |
M... | |
.... | |
.... | |
.... | |
.M.. | |
.... | |
.... | |
..M. | |
.... | |
M... | |
.... | |
.... | |
..M. | |
.M.. | |
.... | |
...M | |
.... | |
.... | |
M... | |
.... | |
.... | |
..M. | |
.... | |
.... | |
...M | |
.... | |
.M.. | |
.... | |
.... | |
...M | |
..M. | |
.... | |
.... | |
.... | |
...M | |
M... | |
.... | |
.... | |
.... | |
.M.. | |
M... | |
.... | |
.... | |
.... | |
.M.. | |
.... | |
.... | |
..M. | |
.... | |
M... | |
.... | |
.... | |
..M. | |
.M.. | |
.... | |
.... | |
.... | |
..M. | |
.... | |
.... | |
.... | |
...M | |
..M. | |
.... | |
.... | |
.... | |
...M | |
...M | |
.... | |
.... | |
M... | |
.M.. | |
M... | |
.... | |
.... | |
M... | |
.... | |
.... | |
.... | |
..M. | |
.... | |
M... | |
.... | |
.... | |
.... | |
...M | |
..M. | |
.... | |
.M.. | |
.... | |
.... | |
.... | |
...M | |
.... | |
.M.. | |
.M.. | |
M... | |
.... | |
.... | |
..M. | |
.... | |
.... | |
.... | |
.... | |
.... | |
.M.. | |
.... | |
.... | |
.... | |
.... | |
...M | |
M... | |
.... | |
.... | |
.... | |
.... | |
..M. | |
.... | |
.... | |
.... | |
.... | |
.... | |
.M.. | |
.... | |
.M.. | |
.... | |
.... | |
.... | |
.... | |
..M. | |
.... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment