A

@AMY_KANG

PPPP

C++
5 hours ago
//오라 미테미테미테 코노 오오라. //키-잇토, 힛토 다요. //밋차 밋차 다메 밋차 다메 마부시이오. //키-잇토, 힛토 다요. //예뻐 예뻐 언니(hey)진짜 진짜 귀여워 //뭐해 뭐해 언니(hey)멧챠쿳챠 배고파! //스테이지, 하테 마테! 나제타 코이즈 신지란네? //히-메무뷰 젠카이 (츄~) //보쿠노 보쿠노 오오라 빔.

세계관 3^^

C++
2 days ago
상황극 해보고 싶다. 오래된(&판타지 그 느낌으로.) 골동품 그런 느낌으로. 그러니까, 어떤 이유로 이 골동품 상점을 찾아오는 사람들을 위해서, 골동품(물론 좀 '영'이 깃들었거나 아니면 어쨋거나 좀 마법이 걸린... 알지? ^^)을 파는 로맨스(이런 속 다보이는 놈)&힐링물(아마.)느낌 상황극.. ^^ 내가 그 '주인'을 하고 싶어. 캐릭터 설정(내가 대사&행동&속마음 을 할 예정 ^^ 미리 얘 대사&행동 유도 같은 것도 좀 최대한 하지 말

사운덱스 | BIKO

C++
2 days ago
#include <iostream> #include <string> using namespace std; char getNumber(char c){ if(c=='B'||c=='F'||c=='P'||c=='V')return '1'; if(c=='C'||c=='G'||c=='J'||c=='K'||c=='Q'||c=='S'||c=='X'||c=='Z')return '2'; if(c=='D'||c=='T')return '3';

공 굴리기 | BIKO

C++
1 week ago
#include<iostream> #include<vector> #include<stack> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); vector<int> balls(10); for(int i=0;i<10;++i){ cin>>balls[i];

세계관 2 ^^

C++
1 week ago
[상황극 시작용 세계관 및 캐릭터 설정 세팅 (19세 버전)] 1. 세계관 개요 - 현재 19세 고3 수험생이자, '완벽한 공범'으로 함께 자취방에서 동거 중인 소꿉친구 4인방의 우정(&음... 로맨스 조오금(<-은 아니고. 꽤 많이(이런.)).) 이야기. - 학교에서는 평범하고 기특한 고3 코스프레를 하지만, 밤에는 'BUTCHER VANITY' 세계관을 기반으로 한 무시무시한 도축업자/살인마 아지트가 됨. - 넷의 관계는 피비린내 나는

세계관 ^^

C++
1 week ago
자, 난 세계관을 하나 만들어보고 싶어. 엄청 넓게 말이지. 대충 배경: 세상은 처음에 '세레나'라는 평화와 창조의 여신에 의해 만들어졌다. 그녀는 곧 5신을 낳았고, 그 신들은 서로서로 힘을 합쳐서 인간세계를 만들었다. 그 세계의 이름은 '루미니아'. 땅은 '풍요'에 의해 비옥하고, 사람들은 '예술'에 의해서 언제나 행복하고, 자연은 '대지'에 의해서 푸르렀고, '태양', '달' 쌍둥이는 언제나 이 세상을 밝게 비추웠다. 그런데, 모종의

공 굴리기 | BIKO

C++
1 week ago
#include<iostream> #include<vector> #include<algorithm> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin>>n; vector<int>time_table(16,0);

기사 편집 | BIKO

C++
2 weeks ago
#include <iostream> #include <vector> using namespace std; int main() { cout << "Hello, World!"; int n; vector<int>s(n); vector<int>e(n);

ㅏ해ㅕㅛㅑ-0

C++
2 weeks ago
#include <iostream> #include <string> using namespace std; int main() { // 채점 서버 입출력 가속화 ios_base::sync_with_stdio(false); cin.tie(NULL);

비코 튜링 기계 2

C++
3 weeks ago
#include <iostream> #include <string> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); string s; int state = 0; int one = 0; if (!getline(cin, s))return 0;

retry right now! 갑자기 생각

C++
1 month ago
#include <iostream> #include <vector> using namespace std; int main() { int n; cin >> n; vector<int> c = {500, 100, 50, 10}; int b = 0; for(int i = 0; i < 4; i++) { b += n/c[i];

아싸

C++
1 month ago
#include <iostream> #include <vector> #include <algorithm> #include <iomanip> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int n, k; // 온도의 개수, 편안하게 느낀 횟수 cin >>n >>k;

갑자기 마이컴파일러 왜 이럼?

C++
1 month ago
#include <iostream> using namespace std; int main(){ int n; cin>>n; int s=0; int m=0; for(int i=1;i<n;i++){ if(i%3==0||i%5==0){

선택 정렬 cout<<"졸려";

Python
2 months ago
a = [9, 1, 5, 3, 7, 2, 8, 6, 4] for i in range(len(a)): min_index = i for j in range(i+1, len(a)): if a[j] < a[min_index]: min_index = j a[i], a[min_index] = a[min_index], a[i] print(i+1, "회차", a)

???

Python
2 months ago
a= [9,1,5,3,7,2,8,6,4] for i in range(len(a)): for j in range(len(a)-i-1): if a[j] > a[j+1]: a[j], a[j+1] = a[j+1], a[j] print(i+1, "회차", a) print("최종 결과:", a)

버블 정렬(이였던 것)

C++
2 months ago
#include<iostream> #include<vector> using namespace std; int main(){ vector<int>n[9]; vector<int>solved[9]; int c=0; for(int i=0;i<n;i++){ cin>>n[i]; if(n[i]>c){

10995번 이 왜 성공

C++
2 months ago
#include<iostream> using namespace std; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ if(i%2==0){ cout<<" "; } cout<<"*";

2446번 맞았다아~ 스트릭 필요할때 사용.

C++
2 months ago
#include<iostream> using namespace std; int main(){ int n; cin>>n; for(int i = 0; i < n; i++){ for(int j = 0; j < i; j++){ cout<<" "; } for(int j = 0; j < 2*(n-i)-1; j++){

2444번 스트릭 아싸

C++
2 months ago
#include<iostream> using namespace std; int main(){ int n; cin>>n; int a = n; for(int i = 1; i <= n; i++){ for(int j = 0; j < a-1; j++){ cout<<" "; }

아싸아싸아싸아싸 괜히 만들음

C++
2 months ago
#include<iostream> using namespace std; int main(){ long long n; cin>>n; for(int i=0;i<n;i++){ long long a,b; cin>>a>>b; cout<<a+b<<"\n"; }