0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ksnctf : #3 Crawling Chaos

Last updated at Posted at 2016-04-17

ksnctf の #3 Crawling Chaos
解き方はいろいろなサイトで公開されているので、回答に使った Python コードだけメモ。

# -*- coding: utf-8 -*-

ans = [70,152,195,284,475,612,791,896,810,850,737,1332,1469,1120,1470,832,1785,2196,1520,1480,1449]
t = []

for i in range(len(ans)):
    t.append(chr(int(ans[i]) / (i+1)))

print(t)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?