結果

問題 No.327 アルファベット列
ユーザー zaichuzaichu
提出日時 2015-12-20 22:52:49
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 339 bytes
コンパイル時間 1,369 ms
コンパイル使用メモリ 164,844 KB
実行使用メモリ 135,576 KB
最終ジャッジ日時 2024-09-17 12:25:09
合計ジャッジ時間 83,563 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 OLE -
testcase_18 OLE -
testcase_19 OLE -
testcase_20 OLE -
testcase_21 OLE -
testcase_22 OLE -
testcase_23 OLE -
testcase_24 OLE -
testcase_25 OLE -
testcase_26 OLE -
testcase_27 OLE -
testcase_28 OLE -
testcase_29 OLE -
testcase_30 WA -
testcase_31 WA -
testcase_32 OLE -
testcase_33 WA -
testcase_34 WA -
testcase_35 OLE -
testcase_36 OLE -
testcase_37 OLE -
testcase_38 OLE -
testcase_39 OLE -
testcase_40 OLE -
testcase_41 OLE -
testcase_42 OLE -
testcase_43 OLE -
testcase_44 OLE -
testcase_45 OLE -
testcase_46 OLE -
testcase_47 OLE -
testcase_48 OLE -
testcase_49 OLE -
testcase_50 OLE -
testcase_51 OLE -
testcase_52 OLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
	int n;
	cin >> n;
	string str= "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
	vector<int> data;
	while(n >= 0){
		data.push_back(n%26);
		n -= 26;
	}
	sort(data.begin(),data.end());
	string ans;
	for(int i = 0; i < data.size(); i++){
		ans += str[data[i]];
	}
	cout << ans << endl;
	return 0;
}
0