Skip to content

Instantly share code, notes, and snippets.

@meru-akimbo
Created May 29, 2012 14:27
Show Gist options
  • Save meru-akimbo/2828732 to your computer and use it in GitHub Desktop.
Save meru-akimbo/2828732 to your computer and use it in GitHub Desktop.
chomp($tani = <STDIN>);
chomp($hyouka = <STDIN>);
$hyouka =~ s/A/4/g;
$hyouka =~ s/B/3/g;
$hyouka =~ s/C/2/g;
$hyouka =~ s/D/1/g;
$hyouka =~ s/F/0/g;
@list = split //, $hyouka;
for (@list){
$score = $score + $_;
}
$score = $score / $tani;
print $score,"\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment