結果
問題 | No.280 歯車の問題(1) |
ユーザー |
|
提出日時 | 2016-02-20 10:17:40 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 11 ms / 1,000 ms |
コード長 | 178 bytes |
コンパイル時間 | 679 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 12:27:06 |
合計ジャッジ時間 | 3,697 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
# coding: utf-8 #yuki_280 n=int(raw_input()) s=raw_input().split() ls=list(s) lres=[0 for i in xrange(3)] lres[0]=ls[n-1] lres[1]='/' lres[2]=ls[0] res="".join(lres) print res