Skip to content

Instantly share code, notes, and snippets.

@sakapon
Created June 27, 2021 12:06
Show Gist options
  • Save sakapon/ffbb76d7119c7810363ae8de3902f2be to your computer and use it in GitHub Desktop.
Save sakapon/ffbb76d7119c7810363ae8de3902f2be to your computer and use it in GitHub Desktop.
競プロ典型 90 問 / Q074
using System;
using System.Linq;
class Q074
{
static void Main()
{
Console.ReadLine();
Console.WriteLine(Console.ReadLine().Select((c, i) => (c - 'a') * (1L << i)).Sum());
}
}
@sakapon
Copy link
Author

sakapon commented Jun 27, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment